/* ============================================================
   [Название салона] — стили сайта
   Палитра: молочный / бежевый / пудровый / графит
   Шрифты: Fraunces (заголовки), Manrope (текст)
   ============================================================ */

:root {
  /* Цвета */
  --cream: #F7F1E9;
  --cream-deep: #F0E7DA;
  --white: #FFFDFB;
  --beige: #E9DECE;
  --powder: #E7CFC8;
  --rose: #B4826D;
  --rose-deep: #9C6C58;
  --graphite: #2B2521;
  --graphite-soft: #6B6259;
  --line: #DED2C0;
  --success: #7C9473;

  /* Типографика */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Слои */
  --shadow-soft: 0 12px 30px rgba(43, 37, 33, 0.08);
  --shadow-card: 0 6px 18px rgba(43, 37, 33, 0.07);
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;

  --container: 1180px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--graphite);
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
section[id] { scroll-margin-top: 90px; }
.section-alt { background: var(--white); }
.section-beige { background: var(--cream-deep); }

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

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 42px); }
.section-head p { color: var(--graphite-soft); font-size: 17px; margin: 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--graphite); }
.btn-secondary {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn-secondary:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.btn-ghost {
  background: var(--white);
  color: var(--graphite);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 241, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 18px rgba(43,37,33,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .01em;
}
.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 15px;
  color: var(--graphite-soft);
  transition: color .18s ease;
  position: relative;
}
.main-nav a:hover { color: var(--graphite); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--graphite);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 74px;
  background: var(--cream);
  z-index: 480;
  padding: 20px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 20px;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 64px 0 90px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.01em;
}
.hero-copy p.lead {
  font-size: 18px;
  color: var(--graphite-soft);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 42px;
  flex-wrap: wrap;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-perks li {
  font-size: 14px;
  color: var(--graphite-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-perks li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,253,251,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.float-card .rating { font-family: var(--font-display); font-size: 22px; }
.float-card small { display: block; color: var(--graphite-soft); font-size: 12px; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--white); }
.booking-wrap {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}
.booking-steps { display: flex; flex-direction: column; gap: 44px; }
.step-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 21px;
}
.step-label .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover { border-color: var(--rose); }
.service-card.is-selected {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(180,130,109,.15);
  background: var(--white);
}
.service-card .name { font-weight: 700; display: block; margin-bottom: 6px; font-size: 15px; }
.service-card .price { color: var(--graphite-soft); font-size: 13.5px; }

.date-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.date-chip {
  flex: 0 0 auto;
  min-width: 66px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px 6px;
  text-align: center;
  transition: border-color .18s ease;
}
.date-chip .dow { display: block; font-size: 12px; color: var(--graphite-soft); margin-bottom: 4px; text-transform: uppercase; }
.date-chip .day { display: block; font-family: var(--font-display); font-size: 19px; }
.date-chip:hover { border-color: var(--rose); }
.date-chip.is-selected { background: var(--rose-deep); border-color: var(--rose-deep); }
.date-chip.is-selected .dow, .date-chip.is-selected .day { color: var(--white); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.time-chip {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.time-chip:hover { border-color: var(--rose); }
.time-chip.is-selected { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--graphite-soft); }
.form-field input,
.form-field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--graphite);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--rose-deep); outline: none; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field .error-msg { display: none; color: #A24B3A; font-size: 12.5px; }
.form-field.has-error input { border-color: #A24B3A; }
.form-field.has-error .error-msg { display: block; }

.consent-row { display: flex; gap: 12px; align-items: flex-start; margin-top: 6px; }
.consent-row input[type="checkbox"] {
  width: 19px; height: 19px; margin-top: 2px; accent-color: var(--rose-deep); flex-shrink: 0;
}
.consent-row label { font-size: 13.5px; color: var(--graphite-soft); line-height: 1.5; }
.consent-row a { color: var(--rose-deep); text-decoration: underline; }

.booking-summary {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.booking-summary .summary-text { font-size: 14px; color: var(--graphite-soft); }
.booking-summary .summary-text strong { color: var(--graphite); }

.booking-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.booking-success.is-visible { display: block; }
.booking-success .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--success); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.booking-form.is-hidden { display: none; }

/* ============================================================
   SERVICES / PRICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-tile {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-tile h3 { font-size: 20px; margin-bottom: 10px; }
.service-tile p { color: var(--graphite-soft); font-size: 14.5px; }
.service-tile .price { font-weight: 700; color: var(--rose-deep); font-size: 15px; }
.services-cta { text-align: center; margin-top: 44px; }

.price-tables { display: flex; flex-direction: column; gap: 40px; }
.price-group h3 {
  font-size: 22px; margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.price-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
}
.price-row .p-name { font-weight: 600; }
.price-row .p-desc { color: var(--graphite-soft); font-size: 13.5px; margin-top: 3px; }
.price-row .p-value { white-space: nowrap; font-weight: 700; color: var(--rose-deep); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite-soft);
  transition: all .18s ease;
}
.filter-btn:hover { border-color: var(--rose); }
.filter-btn.is-active { background: var(--graphite); color: var(--white); border-color: var(--graphite); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; background: rgba(43,37,33,.92);
  display: none; align-items: center; justify-content: center;
  z-index: 900; padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 86vh; max-width: 82vw; border-radius: var(--radius-s); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,253,251,.12); color: var(--white);
  border: none; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: background .18s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,253,251,.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   STYLE FINDER
   ============================================================ */
.style-finder-wrap {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.style-options {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px;
}
.style-option {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.style-option.is-active { background: var(--powder); border-color: var(--rose); }
.style-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.style-preview img { border-radius: var(--radius-s); aspect-ratio: 1/1; object-fit: cover; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
.why-item .why-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--powder); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 19px;
}
.why-item h3 { font-size: 18px; margin-bottom: 8px; }
.why-item p { color: var(--graphite-soft); font-size: 14.5px; margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.about-photos img { border-radius: var(--radius-m); }
.about-photos .ph-tall { grid-row: span 2; aspect-ratio: 3/4; object-fit: cover; height: 100%; }
.about-photos .ph-small { aspect-ratio: 4/3; object-fit: cover; }
.about-text p.lead { font-size: 17px; color: var(--graphite-soft); }
.about-stats {
  display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap;
}
.stat b { display: block; font-family: var(--font-display); font-size: 34px; color: var(--rose-deep); }
.stat span { color: var(--graphite-soft); font-size: 13.5px; }

/* ============================================================
   MASTERS
   ============================================================ */
.masters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.master-card {
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.master-card img { aspect-ratio: 4/5; object-fit: cover; }
.master-body { padding: 20px; display: flex; flex-direction: column; gap: 4px; flex-grow: 1; }
.master-body h3 { font-size: 18px; margin: 0; }
.master-role { color: var(--rose-deep); font-size: 13px; font-weight: 600; }
.master-exp { color: var(--graphite-soft); font-size: 13px; margin-bottom: 8px; }
.master-quote { font-size: 13.5px; color: var(--graphite-soft); font-style: italic; flex-grow: 1; }
.master-card .btn { margin-top: 14px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.review-stars { color: var(--rose-deep); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 14.5px; color: var(--graphite-soft); margin-bottom: 14px; }
.review-name { font-weight: 700; font-size: 14.5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; font-family: var(--font-display); font-size: 18px; gap: 20px;
}
.faq-q .plus { flex-shrink: 0; font-size: 22px; color: var(--rose-deep); transition: transform .25s ease; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a p { padding: 0 4px 22px; color: var(--graphite-soft); font-size: 15px; max-width: 620px; }

/* ============================================================
   BOOKING RULES
   ============================================================ */
.rules-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
}
.rules-list li {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px; color: var(--graphite-soft);
}
.rules-list li::before { content: "—"; color: var(--rose-deep); flex-shrink: 0; }
.rules-side {
  background: var(--white); border-radius: var(--radius-m); padding: 28px;
  box-shadow: var(--shadow-card); align-self: start;
}
.rules-side dt { font-weight: 700; margin-top: 16px; font-size: 14.5px; }
.rules-side dt:first-child { margin-top: 0; }
.rules-side dd { margin: 4px 0 0; color: var(--graphite-soft); font-size: 14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--rose-deep), #7E5748);
  border-radius: var(--radius-l);
  margin: 0 24px;
  padding: 76px 40px;
  text-align: center;
  color: var(--white);
}
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); }
.final-cta p { color: rgba(255,253,251,.85); font-size: 17px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--white); color: var(--rose-deep); }
.final-cta .btn-primary:hover { background: var(--cream); }
.final-cta .btn-secondary { border-color: rgba(255,253,251,.5); color: var(--white); }
.final-cta .btn-secondary:hover { border-color: var(--white); }

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-list li {
  display: flex; align-items: center; gap: 14px; font-size: 15.5px;
}
.contact-list .ico {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--powder); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-placeholder {
  background: var(--cream-deep);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-m);
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite-soft); text-align: center; padding: 30px; font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--graphite);
  color: rgba(255,253,251,.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,253,251,.12);
}
.footer-logo { font-family: var(--font-display); color: var(--white); font-size: 21px; margin-bottom: 12px; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col address { font-size: 14px; color: rgba(255,253,251,.7); font-style: normal; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,253,251,.25);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.footer-social a:hover { border-color: var(--white); }
.footer-legal {
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(255,253,251,.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,253,251,.55); }
.footer-legal-links a:hover { color: var(--white); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: 22px 24px;
  z-index: 700;
  display: none;
  border: 1px solid var(--line);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 13.5px; color: var(--graphite-soft); margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 12px; align-items: center; }
.cookie-actions .btn { padding: 10px 22px; font-size: 13.5px; }
.cookie-actions a { font-size: 13.5px; text-decoration: underline; color: var(--graphite-soft); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247,241,233,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .services-grid, .masters-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-track { grid-template-columns: 1fr; }
  .about-inner, .contacts-inner, .rules-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 68px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .booking-wrap { padding: 26px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .services-grid, .masters-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .style-preview { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta { margin: 0 12px; padding: 50px 22px; }
  .booking-wrap { padding: 20px 16px; }
  .about-photos { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-header .logo { font-size: 19px; }
.legal-back { font-size: 14px; color: var(--graphite-soft); }
.legal-back:hover { color: var(--rose-deep); }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-body h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.legal-updated { color: var(--graphite-soft); font-size: 13.5px; margin-bottom: 40px; }
.legal-body h2 { font-size: 21px; margin-top: 40px; }
.legal-body h3 { font-size: 17px; margin-top: 26px; }
.legal-body p, .legal-body li { color: var(--graphite-soft); font-size: 15.5px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 1em; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--graphite); }
.legal-body a { color: var(--rose-deep); text-decoration: underline; }
.legal-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.legal-toc p { margin-bottom: 10px; font-weight: 700; color: var(--graphite); font-size: 14px; }
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc a { color: var(--graphite-soft); text-decoration: none; font-size: 14px; }
.legal-toc a:hover { color: var(--rose-deep); }
