/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #181818;
  --color-orange: #ff5d00;
  --color-cream: #f6f4f0;
  --color-beige: #eeece7;
  --font-golos: 'Golos Text', sans-serif;
  --font-oranienbaum: 'Oranienbaum', serif;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-orange);
  font-family: var(--font-golos);
  overflow-x: hidden;
}

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

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

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  z-index: 100;
}

.nav__logo {
  height: 21px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 18px;
  color: #181818;
  transition: opacity 0.2s;
  cursor: pointer;
}

.nav__link:hover {
  opacity: 0.65;
}

.nav__cta {
  display: inline-block;
  background-color: var(--color-beige);
  border: 1px solid #181818;
  padding: 12px 32px;
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 18px;
  color: #181818;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-left: 48px;
}

.nav__cta:hover {
  background-color: #fff;
}

/* === HERO === */
.hero {
  position: relative;
  height: 960px;
  margin-top: var(--nav-height);
  overflow: hidden;
  background-color: var(--color-cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__logo {
  position: absolute;
  left: 50%;
  top: 328px;
  transform: translateX(-50%);
  width: min(1201px, 90vw);
  height: auto;
}

.hero__fg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1440px;
  height: 960px;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.hero__strip {
  position: absolute;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  width: min(1469px, 100vw);
  height: auto;
  z-index: 2;
}

/* === HERO LOGO ANIMATION === */
.hero__logo {
  animation: hero-logo-in 0.6s ease-out both;
}

@keyframes hero-logo-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* === NAV REVEAL === */
.nav {
  animation: nav-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes nav-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero__strip {
  animation: hero-strip-in 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes hero-strip-in {
  from { opacity: 0; transform: translateX(-50%) translateY(14px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-fade.revealed {
  opacity: 1;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  transition:
    opacity 0.8s ease-out,
    filter 0.8s ease-out,
    transform 0.8s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-blur.revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* ─── HEADING CHARACTER SPLIT ───────────────────────────────────────── */
.h-char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05em;
}
.h-char__inner {
  display: inline-block;
  transform: translateY(108%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── SCALE + SLIDE REVEAL (salon cards) ────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(24px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ─── SERVICE CARD IMAGE WIPE (left → right clip-path) ──────────────── */
.service-card__img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:nth-child(1) .service-card__img { transition-delay: 0ms; }
.service-card:nth-child(2) .service-card__img { transition-delay: 0ms; }
.service-card:nth-child(3) .service-card__img { transition-delay: 0ms; }
.service-card:nth-child(4) .service-card__img { transition-delay: 0ms; }
.service-card.revealed .service-card__img {
  clip-path: inset(0 0% 0 0);
}

/* ─── HERO ENTRANCE (page load) ─────────────────────────────────────── */
@keyframes kn-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Woman appears first — no delay. Logo appears after her, slowly. */
.hero__fg {
  animation: kn-fade-in 1s ease 0s both;
}
/* SVG logo — opacity only, no transform (overflow:hidden on hero clips translateY in Safari) */
.hero__logo {
  animation: kn-fade-in 1.8s ease 0.85s both;
}
.hero__strip {
  animation: kn-fade-in 1.1s ease 1.8s both;
}
.hero__mobile-cta {
  animation: kn-fade-in 0.9s ease 2.2s both;
}

/* ─── NAV ENTRANCE ───────────────────────────────────────────────────── */
@keyframes kn-nav-down {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.nav {
  animation: kn-nav-down 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── SERVICE PAGE SCROLL ANIMATIONS ─────────────────────────────────── */
.price-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.price-section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.price-row {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--row-delay, 0ms);
}
.price-row.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-left, .reveal-right, .reveal-blur,
  .reveal-scale, .hero__logo, .hero__fg, .hero__strip,
  .hero__mobile-cta, .hero__strip, .nav,
  .price-section, .price-row {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
  }
  .h-char__inner {
    transform: translateY(0) !important;
    transition: none !important;
  }
  .service-card__img {
    clip-path: none !important;
    transition: none !important;
  }
}

/* === SHARED HEADING === */
.section-heading {
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 72px;
  color: var(--color-orange);
  line-height: 1;
}

/* === SERVICES === */
.services {
  padding: 120px 0 0;
  background-color: var(--color-bg);
}

.services__heading {
  text-align: center;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 24px;
}

.service-card {
  display: block;
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.service-card__label {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-oranienbaum);
  font-weight: 400;
  font-size: 52px;
  color: var(--color-orange);
  letter-spacing: -2.6px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

/* === ABOUT === */
.about {
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  padding: 36px 83px;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__bg canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.about > *:not(.about__bg) {
  position: relative;
  z-index: 1;
}

.about__logo {
  width: 437px;
  height: 57px;
  object-fit: contain;
  flex-shrink: 0;
}

.about__text-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  color: var(--color-orange);
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -1.6px;
  line-height: normal;
}

.about__text-main {
  color: var(--color-orange);
}

.about__text-sub {
  color: var(--color-orange);
}

.about__tagline {
  font-family: var(--font-oranienbaum);
  font-weight: 400;
  font-size: 80px;
  color: var(--color-orange);
  text-align: center;
  letter-spacing: -4px;
  line-height: 1;
  white-space: nowrap;
}

/* === SALON === */
.salon {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 120px 75px;
}

.salon__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 813px;
  max-width: 100%;
}

.salon__space-title {
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 72px;
  color: var(--color-orange);
  line-height: 1;
  text-align: center;
}

.salon__logo-wrap {
  width: 813px;
  max-width: 100%;
  height: 106px;
  position: relative;
  margin-top: 4px;
}

.salon__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.salon__texts {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 1007px;
  max-width: 100%;
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-orange);
  text-align: center;
  letter-spacing: -1.6px;
  line-height: 1.4;
}

.salon__texts p:last-child {
  line-height: 30px;
}

.salon__slider-wrap {
  width: 100%;
}

.salon__cards {
  display: flex;
  gap: 25px;
  align-items: center;
  width: 100%;
}

.salon__card--clone {
  display: none;
}

.salon__card {
  overflow: hidden;
  flex: 1;
  height: 547px;
}

.salon__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* === TEAM === */
.team {
  background-color: var(--color-bg);
  overflow: hidden;
}

.team__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 972px;
  padding: 60px 83px 60px 0;
}

.team__strips-area {
  flex: 0 0 684px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__collage {
  width: 665px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Film strip base */
.film-strip {
  background-color: var(--color-orange);
  position: relative;
  padding: 26px 0;
  width: calc(100% + 250px);
  margin-left: -150px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}

.film-strip__holes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.film-strip__holes::before,
.film-strip__holes::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='30'%3E%3Crect x='7' y='5' width='20' height='20' rx='4' fill='%23181818'/%3E%3C/svg%3E");
  background-size: 34px 30px;
  background-repeat: repeat-x;
  background-position: 0 0;
}

.film-strip__holes::before { top: 0; }
.film-strip__holes::after { bottom: 0; }

.film-strip__photos {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.film-strip__photo {
  flex: 1 1 0;
  height: 290px;
  object-fit: cover;
  min-width: 0;
  border-radius: 12px;
}

/* Text side */
.team__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--color-orange);
  padding-left: 69px;
  max-width: 608px;
}

.team__quote {
  font-family: var(--font-oranienbaum);
  font-weight: 400;
  font-size: 54px;
  letter-spacing: -2.7px;
  line-height: 1.1;
}

.team__desc {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -1.6px;
  line-height: 1.25;
}

/* === FORM FOR JOB === */
.job {
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
  padding-top: 120px;
  overflow: hidden;
}

.job__heading {
  font-family: var(--font-oranienbaum);
  font-weight: 400;
  font-size: 64px;
  color: #181818;
  text-align: center;
  letter-spacing: -3.2px;
  line-height: 55px;
  text-transform: lowercase;
  padding: 0 80px;
}

.job__content {
  display: flex;
  align-items: center;
  width: 100%;
}

.job__doll {
  width: 850px;
  flex-shrink: 0;
  position: relative;
  margin-right: -98px;
  z-index: 1;
}

.job__doll img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.job__form {
  width: 608px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 122px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding-right: 80px;
}

.job__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.job__input-row {
  border-bottom: 2px solid #181818;
  padding: 24px;
}

.job__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 28px;
  color: #181818;
  letter-spacing: -1.4px;
}

.job__input::placeholder {
  color: #181818;
  opacity: 1;
}

.job__submit {
  width: 438px;
  background-color: var(--color-orange);
  border: 2px solid #181818;
  padding: 24px;
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  color: #181818;
  letter-spacing: -1.6px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.job__submit:hover {
  opacity: 0.85;
}

/* === CONTACTS === */
.contacts {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 120px 80px 100px;
}

.contacts__heading {
  text-align: center;
  width: 100%;
}

.contacts__map {
  width: 100%;
  aspect-ratio: 1154 / 331;
  overflow: hidden;
  position: relative;
}

.contacts__map img {
  position: absolute;
  width: 115.68%;
  height: 195.17%;
  left: -6.59%;
  top: -58.61%;
  max-width: none;
}

.contacts__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 258px;
  width: 100%;
}

.contacts__info-item {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-orange);
  letter-spacing: -1.6px;
  white-space: nowrap;
  text-align: center;
}

/* === FOOTER === */
.footer {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 120px 0 0;
  overflow: hidden;
}

.footer__disclaimer {
  width: 1278px;
  max-width: calc(100% - 80px);
  display: flex;
  justify-content: flex-end;
}

.footer__disclaimer p {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-orange);
  letter-spacing: -0.9px;
  text-align: right;
  width: 500px;
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__nav-link {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-orange);
  letter-spacing: -1.6px;
  transition: opacity 0.2s;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__logo {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* nav docs button */
.nav__link--docs {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* === DOC LIST POPUP === */
.doc-list-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}

.doc-list-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.doc-list {
  background: #161616;
  border-top: 2px solid var(--color-orange);
  width: 100%;
  max-width: 560px;
  transform: translateY(16px);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.doc-list-overlay.active .doc-list {
  transform: translateY(0);
}

.doc-list__header {
  padding: 28px 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.doc-list__title {
  font-family: var(--font-oranienbaum);
  font-size: 28px;
  color: var(--color-cream);
  letter-spacing: -0.5px;
}

.doc-list__close {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(246, 244, 240, 0.12);
  cursor: pointer;
  color: rgba(246, 244, 240, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  transition: border-color 0.2s, color 0.2s;
}

.doc-list__close:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.doc-list__items {
  list-style: none;
  padding: 8px 0 16px;
}

.doc-list__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.doc-list__item:last-child {
  border-bottom: none;
}

.doc-list__item:hover {
  background: rgba(255, 93, 0, 0.05);
}

.doc-list__item:hover .doc-list__item-num,
.doc-list__item:hover .doc-list__item-arrow {
  opacity: 1;
}

.doc-list__item:hover .doc-list__item-name {
  color: var(--color-cream);
}

.doc-list__item:hover .doc-list__item-arrow {
  transform: translateX(4px);
}

.doc-list__item-num {
  font-family: var(--font-golos);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.doc-list__item-name {
  font-family: var(--font-golos);
  font-size: 15px;
  font-weight: 400;
  color: rgba(246, 244, 240, 0.65);
  flex: 1;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.doc-list__item-arrow {
  font-size: 15px;
  color: var(--color-orange);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

/* === DOC POPUPS === */
.doc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}

.doc-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.doc-popup {
  background: #161616;
  width: 520px;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(40px);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -40px 0 80px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(246, 244, 240, 0.06);
}

.doc-popup-overlay.active .doc-popup {
  transform: translateX(0);
}

.doc-popup__header {
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.doc-popup__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-popup__tag {
  font-family: var(--font-golos);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  opacity: 0.5;
}

.doc-popup__close {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(246, 244, 240, 0.12);
  cursor: pointer;
  color: rgba(246, 244, 240, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.doc-popup__close:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(255, 93, 0, 0.06);
}

.doc-popup__title {
  font-family: var(--font-oranienbaum);
  font-size: 24px;
  color: var(--color-cream);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.doc-popup__body {
  padding: 32px 40px;
  overflow-y: auto;
  flex: 1;
  color: rgba(246, 244, 240, 0.6);
  font-family: var(--font-golos);
  font-size: 14px;
  line-height: 1.8;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 93, 0, 0.2) transparent;
}

.doc-popup__body::-webkit-scrollbar { width: 2px; }
.doc-popup__body::-webkit-scrollbar-thumb {
  background: rgba(255, 93, 0, 0.25);
  border-radius: 1px;
}

.doc-popup__body h3 {
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  opacity: 0.6;
  margin: 28px 0 8px;
}

.doc-popup__body h3:first-child { margin-top: 0; }

.doc-popup__body p {
  margin-bottom: 12px;
  color: rgba(246, 244, 240, 0.65);
}

.doc-popup__body a {
  color: var(--color-orange);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  opacity: 0.9;
}

.doc-popup__foot {
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.doc-popup__site {
  font-family: var(--font-golos);
  font-size: 11px;
  color: rgba(246, 244, 240, 0.2);
  letter-spacing: 0.04em;
}

.doc-popup__download {
  font-family: var(--font-golos);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #161616;
  background: var(--color-orange);
  border: none;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.doc-popup__download:hover {
  opacity: 0.85;
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__credits span {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.5px;
}

.footer__credits-link {
  display: flex;
  align-items: center;
}

.footer__credits img {
  height: 18px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer__credits-link:hover img {
  opacity: 0.8;
}

/* === MOBILE-ONLY ELEMENTS (hidden on desktop) === */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  width: 19px;
  height: 14px;
}

.hero__mobile-cta {
  display: none;
}


/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px 40px;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 0;
  transition: opacity 0.15s;
}
.mobile-menu__close:hover { opacity: 0.6; }
.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mobile-menu__link {
  font-family: var(--font-oranienbaum);
  font-size: 48px;
  color: var(--color-orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
  transition: opacity 0.15s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.mobile-menu__link:hover { opacity: 0.6; }
.mobile-menu__cta {
  margin-top: 36px;
  background: none;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  padding: 13px 36px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  text-transform: lowercase;
}
.mobile-menu__cta:hover {
  background-color: var(--color-orange);
  color: var(--color-bg);
}

/* === RESPONSIVE === */
@media (max-width: 1280px) {
  .salon__cards {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .salon__card:first-child {
    flex: 0 0 340px;
  }

  .salon__card {
    flex: 0 0 330px;
  }

  .contacts__info {
    gap: 80px;
  }

  .film-strip__photo {
    width: 260px;
    height: 190px;
  }
}

@media (max-width: 1100px) {
  .nav {
    padding: 0 40px;
  }

  .about {
    padding: 48px 40px;
    gap: 60px;
  }

  .about__logo {
    width: 314px;
    height: auto;
  }

  .salon {
    padding: 60px 40px;
  }

  .salon__headline,
  .salon__logo-wrap {
    width: 100%;
  }

  .salon__texts {
    width: 100%;
    font-size: 24px;
  }

  .job__content {
    padding-right: 40px;
    flex-direction: column;
    align-items: center;
  }

  .job__doll {
    width: 100%;
    height: 500px;
    margin-right: 0;
  }

  .job__doll img {
    position: static;
    width: 100%;
    height: 100%;
    left: auto;
    object-fit: cover;
    object-position: top;
  }

  .job__form {
    width: 100%;
    max-width: 608px;
    gap: 48px;
    padding: 40px;
  }

  .job__submit {
    width: 100%;
  }

  .contacts {
    padding: 60px 40px 80px;
  }

  .contacts__info {
    gap: 40px;
    flex-wrap: wrap;
  }

  .team__inner {
    flex-direction: column;
    padding: 60px 40px;
    min-height: auto;
  }

  .team__strips-area {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .team__collage {
    width: 480px;
  }

  .team__text {
    padding-left: 0;
    padding-top: 40px;
    gap: 24px;
    max-width: none;
  }

  .team__quote {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .team__desc {
    font-size: 24px;
  }

  .footer__disclaimer {
    max-width: calc(100% - 80px);
  }
}

/* === TABLET (≤1024px — iPad landscape and portrait up to iPad Air) === */
@media (max-width: 1024px) {

  /* — NAV: hamburger для всех планшетов — */
  .nav {
    padding: 0 28px;
  }
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  /* — HERO — */
  .hero {
    height: 800px;
  }
  .hero__logo {
    top: 260px;
    width: min(820px, 88vw);
  }
  .hero__fg {
    height: 800px;
  }
  .hero__strip {
    bottom: 90px;
    width: min(960px, 98vw);
  }

  /* — SECTION HEADINGS — */
  .section-heading {
    font-size: 56px;
  }

  /* — SERVICES — */
  .services {
    padding: 80px 20px 80px;
  }
  .services__heading {
    font-size: 56px;
    margin-bottom: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0;
  }
  .service-card {
    height: 380px;
  }
  .service-card__label {
    font-size: 36px;
    letter-spacing: -1.6px;
    bottom: 24px;
    white-space: normal;
    line-height: 1.1;
    width: calc(100% - 24px);
    left: 12px;
    transform: none;
    text-align: center;
  }

  /* — ABOUT — */
  .about {
    padding: 60px 60px;
    gap: 60px;
    margin-top: 80px;
  }
  .about__tagline {
    font-size: 68px;
    letter-spacing: -3px;
  }

  /* — SALON — */
  .salon {
    padding: 80px 0 80px;
    gap: 48px;
    align-items: flex-start;
  }
  .salon__headline {
    width: 100%;
    padding: 0 40px;
    align-items: center;
  }
  .salon__space-title {
    font-size: 56px;
    text-align: center;
  }
  .salon__logo-wrap {
    width: min(560px, calc(100% - 80px));
    height: auto;
    aspect-ratio: 813 / 106;
  }
  .salon__texts {
    width: 100%;
    padding: 0 40px;
    font-size: 26px;
    letter-spacing: -1.2px;
    gap: 36px;
    text-align: center;
    line-height: 1.45;
  }
  .salon__texts p:last-child {
    line-height: 1.45;
  }
  .salon__slider-wrap {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .salon__slider-wrap::-webkit-scrollbar {
    display: none;
  }
  .salon__cards {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    width: auto;
    gap: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .salon__card,
  .salon__card:first-child {
    flex: 0 0 58vw;
    height: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }

  /* — TEAM — */
  .team__inner {
    flex-direction: column;
    padding: 80px 40px;
    min-height: auto;
  }
  .team__strips-area {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .team__collage {
    width: min(560px, 88vw);
  }
  .team__text {
    padding-left: 0;
    padding-top: 48px;
    gap: 28px;
    text-align: center;
  }
  .team__quote {
    font-size: 46px;
    letter-spacing: -2px;
    line-height: 1.1;
  }
  .team__desc {
    font-size: 24px;
    letter-spacing: -1.2px;
    line-height: 1.4;
  }

  /* — JOB FORM — */
  .job {
    padding-top: 80px;
    gap: 48px;
  }
  .job__heading {
    font-size: 52px;
    letter-spacing: -2.5px;
    line-height: 1;
    padding: 0 40px;
  }
  .job__content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }
  .job__doll {
    order: 2;
    width: 100%;
    height: 480px;
    margin-right: 0;
    overflow: hidden;
  }
  .job__doll img {
    position: static;
    width: 100%;
    height: 110%;
    left: auto;
    object-fit: cover;
    object-position: top;
    max-width: none;
  }
  .job__form {
    order: 1;
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
    margin-left: 0;
    gap: 48px;
    align-items: center;
  }
  .job__inputs {
    width: 100%;
    gap: 16px;
  }
  .job__input-row {
    padding: 20px 8px;
  }
  .job__input {
    font-size: 22px;
    letter-spacing: -1px;
  }
  .job__submit {
    width: 100%;
    font-size: 26px;
    letter-spacing: -1.2px;
    padding: 22px;
  }

  /* — CONTACTS — */
  .contacts {
    padding: 80px 40px;
    gap: 48px;
  }
  .contacts__heading {
    font-size: 56px;
  }
  .contacts__map {
    aspect-ratio: 4 / 2.5;
  }
  .contacts__info {
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contacts__info-item {
    font-size: 28px;
    letter-spacing: -1.4px;
  }

  /* — FOOTER — */
  .footer {
    padding: 80px 0 0;
    gap: 32px;
  }
  .footer__nav {
    gap: 20px;
  }
  .footer__nav-link {
    font-size: 26px;
    letter-spacing: -1.3px;
  }
  .footer__disclaimer {
    max-width: calc(100% - 80px);
  }
  .footer__credits span {
    font-size: 16px;
  }
  .footer__credits img {
    height: 16px;
  }

  /* — COOKIE BAR — */
  .cookie-bar {
    padding: 16px 40px;
  }
}

/* === TABLET PORTRAIT (≤768px — iPad Mini и мелкие планшеты) === */
@media (max-width: 768px) {

  /* === NAV (hamburger уже включён на ≤1024px, уточняем размеры) === */
  .nav {
    --nav-height: 64px;
    padding: 0 24px;
  }
  .nav__logo {
    height: 16px;
  }

  /* === HERO === */
  .hero {
    height: 720px;
    min-height: unset;
  }
  .hero__logo {
    top: 52px;
    width: min(500px, 88vw);
    z-index: 2;
  }
  .hero__fg {
    width: min(900px, 130vw);
    height: 720px;
  }
  .hero__strip {
    bottom: 80px;
    width: min(860px, 100vw);
  }

  /* === SERVICES === */
  .section-heading {
    font-size: 38px;
  }
  .services {
    padding: 40px 28px 72px;
  }
  .services__heading {
    font-size: 38px;
    margin-bottom: 36px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
  }
  .service-card {
    height: 280px;
  }
  .service-card__label {
    font-size: 30px;
    letter-spacing: -1.4px;
    bottom: 20px;
  }

  /* === ABOUT === */
  .about {
    margin-top: 0;
    padding: 40px 28px;
    gap: 48px;
  }
  .about__logo {
    width: 240px;
    height: auto;
  }
  .about__text-group {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  .about__tagline {
    font-size: 48px;
    letter-spacing: -2.2px;
    line-height: 1;
    white-space: normal;
  }

  /* === SALON === */
  .salon {
    padding: 32px 0 0;
    gap: 0;
    align-items: flex-start;
  }
  .salon__headline {
    width: 100%;
    padding: 0 28px;
    align-items: center;
  }
  .salon__space-title {
    font-size: 38px;
    text-align: center;
  }
  .salon__logo-wrap {
    width: 314px;
    max-width: calc(100% - 56px);
    height: 41px;
  }
  .salon__texts {
    width: 100%;
    padding: 40px 28px 0;
    font-size: 20px;
    letter-spacing: -0.54px;
    gap: 24px;
    text-align: center;
    line-height: 1.4;
  }
  .salon__slider-wrap {
    margin-top: 40px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .salon__slider-wrap::-webkit-scrollbar {
    display: none;
  }
  .salon__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
    width: auto;
    gap: 16px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .salon__card,
  .salon__card:first-child {
    flex: 0 0 68vw;
    height: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
  .salon__card--clone {
    display: none;
  }

  /* === TEAM === */
  .team__inner {
    flex-direction: column;
    padding: 48px 28px;
  }
  .team__strips-area {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .team__collage {
    width: min(88vw, 440px);
  }
  .team__text {
    padding-left: 0;
    padding-top: 32px;
    gap: 20px;
    text-align: center;
  }
  .team__quote {
    font-size: 36px;
    letter-spacing: -1.6px;
    line-height: 1.2;
    width: 100%;
  }
  .team__desc {
    font-size: 20px;
    letter-spacing: -0.9px;
    line-height: 1.45;
    width: 100%;
  }

  /* === JOB FORM === */
  .job {
    padding-top: 32px;
    gap: 40px;
  }
  .job__heading {
    font-size: 38px;
    letter-spacing: -1.8px;
    padding: 0 28px;
  }
  .job__content {
    flex-direction: column;
    padding: 0;
    align-items: center;
    width: 100%;
  }
  .job__doll {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 356 / 327;
    margin-right: 0;
    overflow: hidden;
  }
  .job__doll img {
    position: static;
    width: 100%;
    height: 109%;
    left: auto;
    top: auto;
    object-fit: cover;
    object-position: top;
    max-width: none;
  }
  .job__form {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 28px;
    margin-left: 0;
    gap: 32px;
    align-items: center;
  }
  .job__inputs {
    gap: 12px;
    width: 100%;
  }
  .job__input-row {
    padding: 14px 10px;
  }
  .job__input {
    font-size: 18px;
    letter-spacing: -0.9px;
  }
  .job__submit {
    width: 264px;
    max-width: 100%;
    font-size: 18px;
    letter-spacing: -0.9px;
    padding: 16px 24px;
  }

  /* === CONTACTS === */
  .contacts {
    padding: 40px 28px 56px;
    gap: 36px;
  }
  .contacts__heading {
    font-size: 38px;
  }
  .contacts__map {
    aspect-ratio: 312 / 367;
    width: 100%;
  }
  .contacts__info {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .contacts__info-item {
    font-size: 24px;
    letter-spacing: -1.2px;
    white-space: normal;
    text-align: center;
  }

  /* === FOOTER === */
  .footer {
    padding: 28px 28px 0;
    gap: 24px;
  }
  .footer__disclaimer {
    width: 100%;
    justify-content: center;
  }
  .footer__disclaimer p {
    font-size: 16px;
    letter-spacing: -0.8px;
    text-align: center;
    width: 100%;
    line-height: 1.5;
  }
  .footer__nav {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
  }
  .footer__nav-link {
    font-size: 14px;
    letter-spacing: -0.7px;
  }
  .footer__logo {
    width: 100%;
    max-width: 100%;
  }
  .doc-list__header {
    padding: 22px 24px 18px;
  }
  .doc-list__title {
    font-size: 22px;
  }
  .doc-list__item {
    padding: 14px 24px;
  }
  .doc-list__item-name {
    font-size: 13px;
  }
  .doc-popup__header {
    padding: 28px 28px 20px;
  }
  .doc-popup__title {
    font-size: 20px;
  }
  .doc-popup__body {
    padding: 24px 28px;
  }
  .doc-popup__foot {
    padding: 16px 28px;
  }
  .footer__credits span {
    font-size: 14px;
  }
  .footer__credits img {
    height: 14px;
  }
}

/* === PHONE (≤600px — hamburger nav, full mobile) === */
@media (max-width: 600px) {

  /* === NAV === */
  .nav {
    --nav-height: 56px;
    padding: 0 24px;
    align-items: center;
  }
  .nav__logo {
    height: 13px;
  }
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  /* === HERO === */
  .hero {
    height: 685px;
    min-height: unset;
    margin-top: 56px;
    background-color: var(--color-cream);
  }
  .hero__logo {
    top: 28px;
    width: min(337px, 93vw);
    z-index: 2;
  }
  .hero__fg {
    width: 100%;
    height: calc(100% - 130px);
    left: 0;
    top: 130px;
    transform: none;
    object-fit: cover;
    object-position: top center;
  }
  .hero__strip {
    top: 546px;
    bottom: auto;
    width: 100vw;
    transform: translateX(-50%);
  }
  .hero__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 53px;
    transform: translateX(-50%);
    background: #eeece7;
    border: 1px solid #181818;
    padding: 12px 32px;
    font-family: var(--font-golos);
    font-weight: 700;
    font-size: 18px;
    color: #181818;
    letter-spacing: -0.02em;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .hero__mobile-cta:hover { opacity: 0.75; }

  /* === SERVICES === */
  .section-heading {
    font-size: 36px;
  }
  .services {
    padding: 36px 24px 64px;
  }
  .services__heading {
    font-size: 36px;
    margin-bottom: 36px;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
  }
  .service-card {
    height: 238px;
  }
  .service-card__label {
    font-size: 26px;
    letter-spacing: -1.3px;
    bottom: 16px;
    white-space: normal;
    width: calc(100% - 16px);
    left: 8px;
    transform: none;
    line-height: 1;
  }

  /* === ABOUT === */
  .about {
    margin-top: 0;
    padding: 32px 24px;
    gap: 40px;
  }
  .about__logo {
    width: 220px;
    height: auto;
  }
  .about__text-group {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  .about__tagline {
    font-size: 44px;
    letter-spacing: -2.2px;
    line-height: 1;
    white-space: normal;
  }

  /* === SALON === */
  .salon {
    padding: 24px 0 0;
    gap: 0;
    align-items: flex-start;
  }
  .salon__headline {
    width: 100%;
    padding: 0 23px;
    align-items: center;
  }
  .salon__space-title {
    font-size: 36px;
    text-align: center;
  }
  .salon__logo-wrap {
    width: 314px;
    max-width: calc(100% - 46px);
    height: 41px;
  }
  .salon__texts {
    width: 100%;
    padding: 40px 24px 0;
    font-size: 18px;
    letter-spacing: -0.54px;
    gap: 24px;
    text-align: center;
    line-height: 1.4;
  }
  .salon__texts p:last-child {
    line-height: 1.4;
  }
  .salon__slider-wrap {
    margin-top: 40px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .salon__slider-wrap::-webkit-scrollbar {
    display: none;
  }
  .salon__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
    width: auto;
    gap: 15px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .salon__card,
  .salon__card:first-child {
    flex: 0 0 78vw;
    height: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
  .salon__card--clone {
    display: none;
  }

  /* === TEAM === */
  .team__inner {
    flex-direction: column;
    padding: 40px 24px;
  }
  .team__strips-area {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .team__collage {
    width: min(88vw, 400px);
  }
  .team__text {
    padding-left: 0;
    padding-top: 32px;
    gap: 20px;
    text-align: center;
  }
  .team__quote {
    font-size: 32px;
    letter-spacing: -1.6px;
    line-height: 1.2;
    width: 100%;
  }
  .team__desc {
    font-size: 18px;
    letter-spacing: -0.9px;
    line-height: 1.45;
    width: 100%;
  }

  /* === JOB FORM === */
  .job {
    padding-top: 28px;
    gap: 36px;
  }
  .job__heading {
    font-size: 36px;
    letter-spacing: -1.8px;
    line-height: 33px;
    padding: 0 26px;
    text-transform: lowercase;
  }
  .job__content {
    flex-direction: column;
    padding: 0;
    align-items: center;
    width: 100%;
  }
  .job__doll {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 356 / 327;
    margin-right: 0;
    overflow: hidden;
  }
  .job__doll img {
    position: static;
    width: 100%;
    height: 109%;
    left: auto;
    top: auto;
    object-fit: cover;
    object-position: top;
    max-width: none;
  }
  .job__form {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    padding-right: 24px;
    margin-left: 0;
    gap: 32px;
    align-items: center;
  }
  .job__inputs {
    gap: 12px;
    width: 100%;
  }
  .job__input-row {
    padding: 14px 10px;
  }
  .job__input {
    font-size: 18px;
    letter-spacing: -0.9px;
  }
  .job__submit {
    width: 264px;
    max-width: 100%;
    font-size: 18px;
    letter-spacing: -0.9px;
    padding: 16px 24px;
  }

  /* === CONTACTS === */
  .contacts {
    padding: 36px 24px 48px;
    gap: 36px;
  }
  .contacts__heading {
    font-size: 36px;
  }
  .contacts__map {
    aspect-ratio: 312 / 367;
    width: 100%;
  }
  .contacts__info {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .contacts__info-item {
    font-size: 24px;
    letter-spacing: -1.2px;
    white-space: normal;
    text-align: center;
  }

  /* === FOOTER === */
  .footer {
    padding: 24px 24px 0;
    gap: 24px;
  }
  .footer__disclaimer {
    width: 100%;
    justify-content: center;
  }
  .footer__disclaimer p {
    font-size: 16px;
    letter-spacing: -0.8px;
    text-align: center;
    width: 100%;
    line-height: 1.5;
  }
  .footer__nav {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
  }
  .footer__nav-link {
    font-size: 14px;
    letter-spacing: -0.7px;
  }
  .footer__logo {
    width: 100%;
    max-width: 100%;
  }
  /* на телефоне list popup и doc popup снизу */
  .doc-list-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .doc-list {
    max-width: 100%;
    transform: translateY(30px);
    border-top-width: 3px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  }
  .doc-list__header {
    padding: 20px 20px 16px;
  }
  .doc-list__title {
    font-size: 20px;
  }
  .doc-list__item {
    padding: 14px 20px;
    gap: 12px;
  }
  .doc-list__item-name {
    font-size: 13px;
  }
  /* на телефоне попап снизу */
  .doc-popup-overlay {
    align-items: flex-end;
    justify-content: stretch;
  }
  .doc-popup {
    width: 100%;
    height: auto;
    max-height: 88dvh;
    transform: translateY(40px);
    border-left: none;
    border-top: 2px solid var(--color-orange);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
  }
  .doc-popup-overlay.active .doc-popup {
    transform: translateY(0);
  }
  .doc-popup__header {
    padding: 24px 24px 18px;
  }
  .doc-popup__title {
    font-size: 18px;
  }
  .doc-popup__body {
    padding: 20px 24px;
    font-size: 13px;
  }
  .doc-popup__foot {
    padding: 14px 24px;
  }
  .footer__credits span {
    font-size: 13px;
  }
  .footer__credits img {
    height: 13px;
  }
}

/* === PHONE LINK === */
.contacts__phone { cursor: pointer; transition: opacity 0.2s; }
.contacts__phone:hover { opacity: 0.65; }

/* === NAV CTA AS BUTTON === */
button.nav__cta { appearance: none; -webkit-appearance: none; }

/* === BOOKING POPUP === */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup {
  background: #1c1a18;
  border: 1px solid rgba(255, 93, 0, 0.1);
  width: 100%; max-width: 540px;
  max-height: 90vh;
  overflow-y: auto; overflow-x: hidden;
  position: relative;
  border-radius: 3px;
  transform: translateY(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 93, 0, 0.15) transparent;
}
.popup-overlay.active .popup { transform: translateY(0); }
.popup::-webkit-scrollbar { width: 3px; }
.popup::-webkit-scrollbar-thumb { background: rgba(255, 93, 0, 0.2); }

/* Progress bar */
.popup__bar { display: flex; height: 3px; }
.popup__bar-seg { flex: 1; background: rgba(255, 93, 0, 0.12); transition: background 0.35s; }
.popup__bar-seg.active { background: var(--color-orange); }

/* Close */
.popup__close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none;
  color: rgba(246, 244, 240, 0.2);
  font-size: 22px; cursor: pointer;
  line-height: 1; padding: 6px 8px;
  transition: color 0.2s;
  font-family: var(--font-golos); z-index: 1;
  border-radius: 2px;
}
.popup__close:hover { color: rgba(246, 244, 240, 0.7); }

/* Panel */
.popup__panel { padding: 40px 44px 48px; }
.popup__panel.hidden { display: none; }

/* Step number */
.popup__step-num {
  font-family: var(--font-golos);
  font-weight: 500; font-size: 13px;
  color: rgba(255, 93, 0, 0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.popup__step-current { color: var(--color-orange); }

/* Title */
.popup__title {
  font-family: var(--font-golos);
  font-weight: 700; font-size: 36px;
  color: var(--color-cream);
  letter-spacing: -0.8px; line-height: 1.05;
  margin-bottom: 28px;
}

/* Subtitle */
.popup__subtitle {
  font-family: var(--font-golos);
  font-weight: 400; font-size: 16px;
  color: rgba(246, 244, 240, 0.4);
  line-height: 1.6; letter-spacing: -0.3px;
  margin-bottom: 28px;
}

/* Category tabs — pill style, single row scroll */
.popup__categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 2px;
}
.popup__categories::-webkit-scrollbar { display: none; }
.popup__cat {
  background: rgba(255, 93, 0, 0.06);
  border: 1px solid rgba(255, 93, 0, 0.14);
  color: rgba(255, 93, 0, 0.55);
  font-family: var(--font-golos);
  font-weight: 500; font-size: 13px;
  cursor: pointer;
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-transform: lowercase;
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: -0.1px;
}
.popup__cat:hover {
  background: rgba(255, 93, 0, 0.1);
  border-color: rgba(255, 93, 0, 0.3);
  color: var(--color-orange);
}
.popup__cat.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #181818;
  font-weight: 700;
}

/* Services list — clean separator lines */
.popup__services {
  display: flex; flex-direction: column;
  margin-bottom: 32px; min-height: 60px;
}
.popup__service-item {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border: none; outline: none;
  border-bottom: 1px solid rgba(246, 244, 240, 0.07);
  background: transparent;
  color: rgba(246, 244, 240, 0.6);
  font-family: var(--font-golos);
  font-weight: 500; font-size: 18px;
  text-align: left; cursor: pointer;
  transition: color 0.18s;
  text-transform: lowercase;
  -webkit-appearance: none; appearance: none;
  letter-spacing: -0.3px;
}
.popup__service-item::after {
  content: '→';
  font-size: 13px;
  color: rgba(255, 93, 0, 0.2);
  transition: color 0.18s, transform 0.18s;
  flex-shrink: 0;
  margin-left: 16px;
}
.popup__service-item:hover { color: var(--color-cream); }
.popup__service-item:hover::after {
  color: rgba(255, 93, 0, 0.5);
  transform: translateX(3px);
}
.popup__service-item.selected { color: var(--color-orange); }
.popup__service-item.selected::after {
  color: var(--color-orange);
  transform: translateX(3px);
}

/* Unknown / event chips */
.popup__unknown { padding: 8px 0 4px; }
.popup__unknown-text {
  font-family: var(--font-golos); font-weight: 400; font-size: 16px;
  color: rgba(246, 244, 240, 0.35);
  margin-bottom: 20px; letter-spacing: -0.3px; line-height: 1.6;
}
.popup__event-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.popup__event-chip {
  padding: 8px 18px;
  border: 1px solid rgba(255, 93, 0, 0.2);
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 93, 0, 0.45);
  font-family: var(--font-golos); font-weight: 500; font-size: 14px;
  cursor: pointer; transition: all 0.15s; text-transform: lowercase;
  letter-spacing: -0.2px;
}
.popup__event-chip:hover { border-color: var(--color-orange); color: var(--color-orange); }
.popup__event-chip.active { background: var(--color-orange); border-color: var(--color-orange); color: #181818; font-weight: 700; }

/* Next button — full width, clean */
.popup__next {
  display: block; width: 100%;
  background: var(--color-orange);
  border: none; outline: none;
  padding: 17px 32px;
  font-family: var(--font-golos); font-weight: 700; font-size: 16px;
  color: #181818; cursor: pointer;
  transition: opacity 0.2s;
  text-transform: lowercase;
  letter-spacing: -0.3px;
  border-radius: 2px;
  -webkit-appearance: none; appearance: none;
}
.popup__next:hover:not(:disabled) { opacity: 0.85; }
.popup__next:disabled { opacity: 0.18; cursor: not-allowed; }

/* Inputs */
.popup__inputs { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.popup__input-row {
  border-bottom: 1px solid rgba(255, 93, 0, 0.15);
  padding: 18px 0; transition: border-color 0.2s;
}
.popup__input-row:focus-within { border-bottom-color: var(--color-orange); }
.popup__input-row.error { border-bottom-color: #ff2200; animation: errorShake 0.38s ease; }
.popup__input {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-golos); font-weight: 500; font-size: 20px;
  color: var(--color-cream); letter-spacing: -0.5px;
}
.popup__input::placeholder { color: rgba(246, 244, 240, 0.18); }

/* Upsell */
.popup__upsell { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.popup__checkbox-label {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  color: rgba(246, 244, 240, 0.32);
  font-family: var(--font-golos); font-weight: 400; font-size: 15px;
  letter-spacing: -0.2px; transition: color 0.15s;
}
.popup__checkbox-label:hover { color: rgba(246, 244, 240, 0.6); }
.popup__checkbox-input { width: 15px; height: 15px; accent-color: var(--color-orange); cursor: pointer; flex-shrink: 0; }

/* Submit button */
.popup__submit {
  display: block; width: 100%;
  padding: 18px 32px;
  background: var(--color-orange); border: none; color: #181818;
  font-family: var(--font-golos); font-weight: 700; font-size: 16px;
  cursor: pointer; transition: opacity 0.2s;
  letter-spacing: -0.3px; text-transform: lowercase; margin-bottom: 16px;
  border-radius: 2px;
}
.popup__submit:hover { opacity: 0.85; }

.popup__trust {
  font-family: var(--font-golos); font-weight: 400; font-size: 13px;
  color: rgba(246, 244, 240, 0.15);
  letter-spacing: -0.1px; margin-bottom: 24px;
}

/* Back */
.popup__back {
  background: none; border: none;
  color: rgba(246, 244, 240, 0.25);
  font-family: var(--font-golos); font-weight: 500; font-size: 14px;
  cursor: pointer; padding: 0;
  transition: color 0.2s;
  letter-spacing: -0.2px; text-transform: lowercase; display: block;
}
.popup__back:hover { color: rgba(246, 244, 240, 0.6); }

/* Success */
.popup__success-panel { text-align: center; }

.popup__success-kn {
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255, 93, 0, 0.35);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-top: 4px;
}
.popup__success-title {
  font-size: 52px;
  letter-spacing: -1.6px;
  line-height: 0.98;
  margin-bottom: 0;
}
.popup__success-divider {
  width: 32px;
  height: 2px;
  background: var(--color-orange);
  opacity: 0.5;
  margin: 22px auto;
  border: none;
  display: block;
}

.popup__social { display: flex; gap: 10px; margin: 28px 0 16px; }
.popup__social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-golos); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: opacity 0.2s, background 0.2s;
  letter-spacing: -0.2px;
  border-radius: 2px;
  border: 1px solid transparent;
}
.popup__social-btn:hover { opacity: 0.82; }
.popup__social-wa {
  background: rgba(37, 211, 102, 0.09);
  border-color: rgba(37, 211, 102, 0.28);
  color: #4ce882;
}
.popup__social-tg {
  background: rgba(34, 158, 217, 0.09);
  border-color: rgba(34, 158, 217, 0.28);
  color: #4bbde0;
}

.popup__done-btn {
  width: 100%; padding: 13px; background: none;
  border: 1px solid rgba(246, 244, 240, 0.08);
  color: rgba(246, 244, 240, 0.22);
  font-family: var(--font-golos); font-weight: 500; font-size: 13px;
  cursor: pointer; transition: all 0.2s;
  letter-spacing: -0.2px; text-transform: lowercase;
  border-radius: 2px;
}
.popup__done-btn:hover { border-color: rgba(246, 244, 240, 0.2); color: rgba(246, 244, 240, 0.5); }

@media (max-width: 600px) {
  .popup-overlay { padding: 16px; }
  .popup__panel { padding: 32px 24px 40px; }
  .popup__title { font-size: 30px; }
  .popup__service-item { font-size: 17px; padding: 14px 0; }
  .popup__cat { font-size: 13px; padding: 6px 14px; }
  .popup__next { font-size: 15px; padding: 16px; }
  .popup__input { font-size: 18px; }
}

/* === MULTI-SELECT SERVICES === */
.popup__multi-hint {
  font-family: var(--font-golos);
  font-weight: 400;
  font-size: 13px;
  color: rgba(246, 244, 240, 0.28);
  letter-spacing: -0.1px;
  margin-top: -20px;
  margin-bottom: 22px;
  line-height: 1.4;
}

.popup__selected-count {
  font-family: var(--font-golos);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-orange);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.popup__selected-count.has-selection {
  opacity: 1;
  transform: translateY(0);
}

/* Service item — checkbox on left */
.popup__service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.popup__svc-chk {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 93, 0, 0.22);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.popup__service-item:hover .popup__svc-chk {
  border-color: rgba(255, 93, 0, 0.55);
}
.popup__service-item.selected .popup__svc-chk {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.popup__service-item.selected .popup__svc-chk::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #181818;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.popup__svc-name {
  flex: 1;
  text-align: left;
}
/* Remove old right-side ○/→ indicator */
.popup__service-item::after { display: none; }

/* === POPUP ERROR MESSAGES === */
.popup__error-msg {
  display: block;
  font-family: var(--font-golos);
  font-weight: 400;
  font-size: 12px;
  color: #ff3b1e;
  letter-spacing: -0.1px;
  min-height: 16px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.popup__input-row.error .popup__error-msg {
  opacity: 1;
  transform: translateY(0);
}

/* === JOB FORM ERRORS === */
.job__input-row.error {
  border-bottom-color: #ff3b1e;
  animation: errorShake 0.38s ease;
}
.job__error {
  display: block;
  font-family: var(--font-golos);
  font-weight: 400;
  font-size: 13px;
  color: #ff3b1e;
  letter-spacing: -0.1px;
  min-height: 18px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.job__input-row.error .job__error {
  opacity: 1;
  transform: translateY(0);
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-7px); }
  40%       { transform: translateX(7px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* === COOKIE BAR === */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  background: #141210;
  border-top: 1px solid rgba(255, 93, 0, 0.12);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}
.cookie-bar.visible {
  transform: translateY(0);
}
.cookie-bar__text {
  font-family: var(--font-golos);
  font-weight: 400;
  font-size: 15px;
  color: rgba(246, 244, 240, 0.45);
  letter-spacing: -0.2px;
  line-height: 1.5;
  flex: 1;
}
.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-bar__accept {
  background: var(--color-orange);
  border: none;
  padding: 10px 28px;
  font-family: var(--font-golos);
  font-weight: 700;
  font-size: 14px;
  color: #181818;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: -0.2px;
  text-transform: lowercase;
  transition: opacity 0.2s;
}
.cookie-bar__accept:hover { opacity: 0.85; }
.cookie-bar__decline {
  background: none;
  border: 1px solid rgba(255, 93, 0, 0.2);
  padding: 10px 20px;
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 14px;
  color: rgba(246, 244, 240, 0.3);
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: -0.2px;
  text-transform: lowercase;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-bar__decline:hover {
  border-color: rgba(255, 93, 0, 0.45);
  color: rgba(246, 244, 240, 0.6);
}

@media (max-width: 600px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .cookie-bar__text {
    font-size: 14px;
  }
  .cookie-bar__actions {
    width: 100%;
  }
  .cookie-bar__accept {
    flex: 1;
    text-align: center;
    padding: 11px 20px;
  }
  .cookie-bar__decline {
    flex: 1;
    text-align: center;
    padding: 11px 20px;
  }
}

/* ─── SALON SLIDER: 6-photo with navigation ─────────────────────────── */
.salon__slider-wrap {
  overflow: hidden;
}

.salon__cards {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.salon__card {
  flex: 0 0 calc((100% - 50px) / 3);
  height: auto;
  aspect-ratio: 3 / 4;
}

.salon__card img {
  object-position: center;
}

.salon__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.salon__btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-orange);
  background: transparent;
  color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.salon__btn:hover:not(:disabled) {
  background: var(--color-orange);
  color: var(--color-bg);
}

.salon__btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.salon__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.salon__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 93, 0, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.salon__dot.active {
  background: var(--color-orange);
  transform: scale(1.45);
}

/* ─── PRODUCTS SECTION ───────────────────────────────────────────────── */
.products {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 120px 75px;
}

.products__subtitle {
  font-family: var(--font-golos);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 93, 0, 0.7);
  text-align: center;
  max-width: 640px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  margin-top: -16px;
}

@media (max-width: 1100px) { .products { padding: 80px 40px; gap: 32px; } }
@media (max-width: 768px)  {
  .products { padding: 60px 0 60px; gap: 24px; }
  .products__heading { padding: 0 24px; }
  .products__subtitle { padding: 0 24px; font-size: 16px; }
}

/* ─── GALLERY SECTION ────────────────────────────────────────────────── */
.gallery {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 120px 75px;
}

.gallery__heading {
  /* inherits .section-heading */
}

.gallery__viewport {
  width: 100%;
  max-width: 1290px;
  overflow: hidden;
  position: relative;
}

.gallery__track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery__slide {
  flex: 0 0 33.333%;
  padding: 0 10px;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.gallery__slide:hover img {
  transform: scale(1.04);
}

.gallery__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.gallery__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--color-orange);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.gallery__btn:hover:not(:disabled) {
  background: var(--color-orange);
  color: var(--color-bg);
}

.gallery__btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.gallery__dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 93, 0, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery__dot.active {
  background: var(--color-orange);
  transform: scale(1.45);
}

/* ─── Gallery responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gallery {
    padding: 80px 40px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 60px 0 60px;
    gap: 32px;
  }

  .gallery__heading {
    padding: 0 24px;
  }

  .gallery__viewport {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery__viewport::-webkit-scrollbar {
    display: none;
  }

  .gallery__track {
    transition: none;
    transform: none !important;
    gap: 16px;
    padding: 0 24px;
  }

  .gallery__slide {
    flex: 0 0 72vw;
    padding: 0;
    scroll-snap-align: start;
  }

  .gallery__controls {
    display: none;
  }

  /* Salon nav on mobile */
  .salon__nav {
    display: none;
  }

  .salon__card--hide-mobile {
    display: none;
  }

  .salon__slider-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .salon__slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .salon__cards {
    transition: none;
    transform: none !important;
    overflow: visible;
    gap: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .salon__card,
  .salon__card:first-child {
    flex: 0 0 72vw;
    height: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
}
