/* ===== БАЗА ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #5A5047;
  background: #F5EFEA;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== КНОПКИ ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #C9B8A5;
  border-radius: 50px;
  background: transparent;
  color: #6B5F55;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn:hover {
  background: #D4C5B2;
  color: #4A4038;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 184, 165, 0.3);
}

.btn--primary {
  background: #D4C5B2;
  color: #4A4038;
  border-color: #C9B8A5;
}

.btn--primary:hover {
  background: #C9B8A5;
  color: #3D3631;
  border-color: #B8A894;
}

.btn--large {
  padding: 18px 48px;
  font-size: 18px;
}

.btn--small {
  padding: 10px 24px;
  font-size: 14px;
}

/* ===== ШАПКА ===== */
.header {
  background: #F5EFEA;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  text-decoration: none;
  color: #5A5047;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9B8A5;
  transition: width 0.3s;
}

.header__nav a:hover::after,
.header__nav a:focus::after {
  width: 100%;
}

.header__nav a:hover {
  color: #C9B8A5;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #5A5047;
  transition: 0.3s;
}

/* ===== ГЕРОЙ ===== */
.hero {
  padding: 60px 0 40px;
  background: #F5EFEA;
}

.hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content {
  max-width: 720px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #3E332B;
  margin: 0 0 8px 0;
  text-align: center;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #6B5F55;
  margin: 0 0 24px 0;
  text-align: center;
  max-width: 520px;
}

/* Увеличенный логотип в 2 раза */
.hero-logo {
  height: 320px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(70%) sepia(30%) saturate(500%) hue-rotate(5deg);
}

.hero-brand-sub {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3E332B;
  margin: 0 0 16px 0;
}

.hero-services {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #3E332B;
  margin: 0;
  text-align: center;
}

.hero-rating {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #3E332B;
  margin: 0 0 8px 0;
  text-align: center;
}

.hero-rating strong {
  font-weight: 700;
  color: #3E332B;
}

.hero .btn {
  margin-top: 12px;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.advantages {
  padding: 60px 0;
  background: #F0EAE4;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.advantage {
  text-align: center;
  padding: 32px 20px;
  background: #FAF5F0;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}

.advantage:hover {
  transform: translateY(-6px);
}

.advantage__icon {
  font-size: 40px;
  color: #C9B8A5;
  margin-bottom: 12px;
  display: block;
}

.advantage h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  color: #4A4038;
}

.advantage p {
  color: #8A7A6F;
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== ЗАГОЛОВКИ ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #4A4038;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C9B8A5;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ САЛОНОВ ===== */
.salons-switcher {
  padding: 20px 0 10px;
  background: #F5EFEA;
  border-bottom: 1px solid #E8DDD4;
}

.salons-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.salon-tab {
  padding: 12px 28px;
  background: #FAF5F0;
  border: 2px solid #E8DDD4;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #8A7A6F;
  cursor: pointer;
  transition: all 0.3s;
}

.salon-tab:hover {
  border-color: #C9B8A5;
  color: #C9B8A5;
}

.salon-tab.active {
  background: #D4C5B2;
  border-color: #C9B8A5;
  color: #4A4038;
  box-shadow: 0 4px 14px rgba(201, 184, 165, 0.2);
}

/* ===== АКЦИИ ===== */
.promo {
  padding: 80px 0;
  background: #FAF5F0;
}

.promo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.promo-card {
  background: #F5EFEA;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E8DDD4;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 184, 165, 0.25);
  border-color: #C9B8A5;
}

.promo-card__image {
  width: 100%;
  aspect-ratio: 680 / 850;
  background: #E8DDD4;
  overflow: hidden;
  flex-shrink: 0;
}

.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.promo-card:hover .promo-card__image img {
  transform: scale(1.05);
}

.promo-card__body {
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #4A4038;
  margin-bottom: 12px;
}

.promo-card__body p {
  font-size: 15px;
  color: #8A7A6F;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.promo-card__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #D4C5B2;
  color: #4A4038;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  border: 2px solid #C9B8A5;
  align-self: center;
}

.promo-card__btn:hover {
  background: #C9B8A5;
  color: #3D3631;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 184, 165, 0.3);
}

/* ===== УСЛУГИ ===== */
.services {
  padding: 80px 0;
  background: #FAF5F0;
}

.services__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.services__tabs button {
  padding: 12px 28px;
  background: #F0EAE4;
  border: 1px solid #E8DDD4;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #8A7A6F;
  cursor: pointer;
  transition: all 0.3s;
}

.services__tabs button.active {
  background: #D4C5B2;
  border-color: #C9B8A5;
  color: #4A4038;
  box-shadow: 0 4px 14px rgba(201, 184, 165, 0.2);
}

.services__tabs button:hover:not(.active) {
  border-color: #C9B8A5;
  color: #C9B8A5;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: #F5EFEA;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
  border: 1px solid #E8DDD4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border-color: #C9B8A5;
}

.service-card__image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #E8DDD4;
  flex-shrink: 0;
  margin-bottom: 12px;
}

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

.service-card h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #4A4038;
}

.service-card .price {
  font-weight: 700;
  color: #6B5F55;
  font-size: 22px;
}

.service-card .desc {
  font-size: 14px;
  color: #8A7A6F;
  margin-top: 4px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card--hidden {
  display: none;
}

.services__show-all-btn {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 12px 36px;
  background: transparent;
  border: 2px solid #C9B8A5;
  border-radius: 50px;
  color: #6B5F55;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  margin-top: 10px;
}

.services__show-all-btn:hover {
  background: #D4C5B2;
  color: #4A4038;
  box-shadow: 0 8px 20px rgba(201, 184, 165, 0.3);
}

/* ===== МАСТЕРА — КАРУСЕЛЬ ===== */
.masters {
  padding: 80px 0;
  background: #F0EAE4;
}

.masters__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C9B8A5 #F5EFEA;
}

.masters__grid::-webkit-scrollbar {
  height: 8px;
}

.masters__grid::-webkit-scrollbar-track {
  background: #F5EFEA;
  border-radius: 4px;
}

.masters__grid::-webkit-scrollbar-thumb {
  background: #C9B8A5;
  border-radius: 4px;
}

.masters__grid::-webkit-scrollbar-thumb:hover {
  background: #B8A894;
}

.master-card {
  flex: 0 0 260px;
  max-width: 260px;
  scroll-snap-align: start;
  text-align: center;
  background: #FAF5F0;
  padding: 28px 20px 20px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.master-card:hover {
  transform: translateY(-4px);
}

.master-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #E8DDD4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.master-card__photo-fallback {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #E8DDD4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  color: #6B5F55;
  font-family: 'Playfair Display', serif;
}

.master-card h3 {
  font-weight: 600;
  font-size: 18px;
  color: #4A4038;
  margin-bottom: 4px;
}

.master-card .master-spec {
  color: #8A7A6F;
  font-size: 13px;
  margin-bottom: 6px;
}

.master-card .master-rating {
  color: #C9B8A5;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.master-card__desc {
  font-size: 13px;
  color: #8A7A6F;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
}

.master-card__desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.master-card__desc-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.master-card__read-more {
  display: inline-block;
  margin-top: 4px;
  color: #C9B8A5;
  font-size: 12px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  text-decoration: underline;
}

.master-card__read-more:hover {
  color: #B8A894;
}

.master-card__show-work {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 20px;
  background: #D4C5B2;
  color: #4A4038;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid #C9B8A5;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.master-card__show-work:hover {
  background: #C9B8A5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 184, 165, 0.3);
}

/* ===== ОТЗЫВЫ ===== */
.reviews {
  padding: 80px 0;
  background: #FAF5F0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: #F5EFEA;
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid #C9B8A5;
}

.review-card p {
  font-style: italic;
  color: #5A5047;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-card span {
  font-weight: 600;
  color: #C9B8A5;
  font-size: 15px;
  display: block;
}

/* ===== О КОМПАНИИ ===== */
.about {
  padding: 80px 0;
  background: #F0EAE4;
}

.about__text {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 48px;
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  color: #5A5047;
}

.about__text p {
  margin-bottom: 16px;
}

.about__text strong {
  color: #4A4038;
  font-weight: 700;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.about__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: #C9B8A5;
  font-size: 18px;
  line-height: 1.6;
}

.about__cta {
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #3E332B;
  margin-top: 24px;
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about__gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #E8DDD4;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(201, 184, 165, 0.35);
}

.about__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about__gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== СЛОВО «Luxepil» — обычный текст ===== */
.gold-text {
  color: #3E332B;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  font-size: 1em;
  line-height: inherit;
}

/* ===== ЛАЙТБОКС ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(62, 51, 43, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #F5EFEA;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 239, 234, 0.15);
  border: 2px solid rgba(245, 239, 234, 0.4);
  color: #F5EFEA;
  font-size: 48px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  padding: 0;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(245, 239, 234, 0.3);
  border-color: rgba(245, 239, 234, 0.8);
}

.lightbox__prev {
  left: 32px;
}

.lightbox__next {
  right: 32px;
}

/* ===== КОНТАКТЫ ===== */
.contacts {
  padding: 80px 0;
  background: #F5EFEA;
}

.contacts__inner {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.contacts__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts__title {
  text-align: left;
  margin-bottom: 24px;
}

.contacts__title::after {
  margin-left: 0;
}

.contacts__info p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #5A5047;
}

.contacts__info a {
  color: #C9B8A5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contacts__info a:hover {
  color: #B8A894;
}

.contacts__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contacts__socials a {
  padding: 8px 20px;
  background: #FAF5F0;
  border: 1px solid #E8DDD4;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #8A7A6F;
  text-decoration: none;
  transition: all 0.3s;
}

.contacts__socials a:hover {
  border-color: #C9B8A5;
  color: #C9B8A5;
  background: rgba(201, 184, 165, 0.05);
}

/* ===== КАРТА ===== */
.contacts__map {
  flex: 1.5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contacts__map .map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  text-decoration: none;
  background: #F5EFEA;
  border: 1.5px solid #E8DDD4;
  transition: all 0.3s ease;
}

.contacts__map .map-link:hover {
  border-color: #C9B8A5;
  background: #F0EAE4;
  box-shadow: 0 8px 30px rgba(201, 184, 165, 0.1);
  transform: scale(1.005);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
}

.map-placeholder svg {
  color: #C9B8A5;
  opacity: 0.8;
  flex-shrink: 0;
}

.map-placeholder span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #C9B8A5;
  letter-spacing: 0.3px;
}

.map-placeholder small {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #B8ADA7;
}

/* ===== ФОРМА ЗАПИСИ ===== */
.booking {
  padding: 80px 0;
  background: #F0EAE4;
}

.booking__card {
  max-width: 640px;
  margin: 0 auto;
  background: #FAF5F0;
  padding: 48px 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.booking__title {
  margin-bottom: 32px;
}

/* ===== ФУТЕР ===== */
.footer {
  padding: 40px 0;
  background: #4A4038;
  color: #B8ADA7;
  text-align: center;
}

.footer__inner p {
  margin-bottom: 4px;
  font-size: 14px;
}

.footer__inner p:last-child {
  opacity: 0.6;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about__text {
    font-size: 16px;
  }
  .contacts__inner {
    flex-direction: column;
  }
  .contacts__title {
    text-align: center;
  }
  .contacts__title::after {
    margin-left: auto;
  }
  .contacts__map .map-link {
    height: 220px;
  }
  .hero-logo {
    height: 260px;
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FAF5F0;
    padding: 32px 24px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  }
  .header__nav.open {
    display: flex;
  }
  .header__burger {
    display: flex;
  }

  .hero {
    padding: 60px 0 40px;
  }
  .hero-cta-text {
    font-size: 18px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-logo {
    height: 200px;
    max-width: 480px;
  }
  .hero-brand-sub {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .hero-services,
  .hero-rating {
    font-size: 14px;
  }

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

  .promo__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .promo-card__image {
    aspect-ratio: 680 / 850;
  }
  .promo-card__body {
    padding: 20px;
  }
  .promo-card__body h3 {
    font-size: 20px;
  }

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

  .masters {
    padding: 60px 0;
  }

  .masters__grid {
    gap: 14px;
    padding: 4px 0 16px;
  }

  .master-card {
    flex: 0 0 180px;
    max-width: 180px;
    padding: 18px 12px 14px;
    border-radius: 18px;
  }

  .master-card__photo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .master-card__photo img,
  .master-card__photo-fallback {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
  .master-card h3 {
    font-size: 14px;
  }
  .master-card .master-spec {
    font-size: 12px;
  }
  .master-card .master-rating {
    font-size: 11px;
  }
  .master-card__desc {
    font-size: 12px;
  }
  .master-card__show-work {
    padding: 6px 14px;
    font-size: 11px;
  }
  .master-card__read-more {
    font-size: 11px;
  }

  .booking__card {
    padding: 32px 20px;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .map-placeholder span {
    font-size: 17px;
  }
  .map-placeholder svg {
    width: 36px;
    height: 36px;
  }
  .contacts__map .map-link {
    height: 180px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
  .hero-cta-text {
    font-size: 16px;
  }
  .hero-logo {
    height: 160px;
    max-width: 380px;
  }
  .hero-brand-sub {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .hero-text {
    font-size: 15px;
  }
  .section-title {
    font-size: 28px;
  }
  .service-card__image {
    height: 160px;
  }
  .salon-tab {
    font-size: 14px;
    padding: 8px 16px;
  }
  .about {
    padding: 60px 0;
  }
  .about__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about__gallery-item {
    border-radius: 12px;
  }
  .about__text {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .about__cta {
    font-size: 15px;
  }
  .promo {
    padding: 60px 0;
  }
  .promo-card__body h3 {
    font-size: 18px;
  }
  .promo-card__body p {
    font-size: 14px;
  }
}
