:root {
  --milk: #fbf6ef;
  --white: #ffffff;
  --powder: #efd9cf;
  --rose: #e8c7bc;
  --beige: #d8bdab;
  --accent: #c98f7a;
  --accent-dark: #a96f5d;
  --graphite: #2d2927;
  --muted: #766a63;
  --border: rgba(45, 41, 39, 0.12);
  --shadow: 0 24px 70px rgba(122, 88, 72, 0.16);
  --radius: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--graphite);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 143, 122, 0.2), transparent 24rem),
    radial-gradient(circle at 58% 22%, rgba(255, 255, 255, 0.68), transparent 26rem),
    radial-gradient(circle at 82% 58%, rgba(185, 140, 122, 0.12), transparent 25rem),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.9), transparent 22rem),
    linear-gradient(180deg, #fffaf5 0%, var(--milk) 46%, #f5ebe3 100%);
}

body.menu-open { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 88, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 88, 72, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 12%, rgba(201, 143, 122, 0.08) 48%, transparent 56%),
    linear-gradient(146deg, transparent 18%, rgba(255, 255, 255, 0.5) 50%, transparent 59%);
  opacity: 0.42;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(201, 143, 122, 0.52);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.45), transparent 32rem);
}

.section-soft {
  background: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(45, 41, 39, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.78);
  border-bottom: 1px solid rgba(45, 41, 39, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta,
.btn {
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.nav a:hover { color: var(--accent-dark); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.btn-primary {
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(45, 41, 39, 0.16);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  color: var(--graphite);
}

.btn-secondary:hover {
  border-color: rgba(201, 143, 122, 0.42);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.burger {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.burger span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--graphite);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -14% -12% -12% -10%;
  background:
    radial-gradient(circle at 74% 22%, rgba(201, 143, 122, 0.32), transparent 31rem),
    radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.76), transparent 25rem),
    radial-gradient(circle at 50% 80%, rgba(216, 189, 171, 0.18), transparent 30rem);
  filter: blur(4px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 14%, rgba(201, 143, 122, 0.12) 47%, transparent 56%),
    linear-gradient(142deg, transparent 24%, rgba(255, 255, 255, 0.62) 48%, transparent 57%);
  opacity: 0.48;
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-text,
.section-head p,
.info-card p,
.service-card p,
.review-card p,
.master-card p,
.cta-box p,
.contacts-grid p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 20px;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(201, 143, 122, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(122, 88, 72, 0.08);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -6% 2%;
  z-index: -1;
  background:
    radial-gradient(circle at 64% 24%, rgba(201, 143, 122, 0.28), transparent 52%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.72), transparent 48%);
  filter: blur(54px);
  pointer-events: none;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(122, 88, 72, 0.12);
  backdrop-filter: blur(12px);
  animation: floatSoft 7s ease-in-out infinite;
}

.floating-note::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.note-top {
  right: 5%;
  top: 8%;
}

.note-bottom {
  left: 4%;
  top: 30%;
  animation-delay: 1.2s;
}

.beauty-card {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  box-shadow: 0 32px 90px rgba(122, 88, 72, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.beauty-photo {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.72), transparent 5.5rem),
    radial-gradient(circle at 48% 58%, rgba(255, 255, 255, 0.48), transparent 10rem),
    radial-gradient(circle at 26% 30%, rgba(201, 143, 122, 0.18), transparent 8rem),
    linear-gradient(145deg, #efd9cf 0%, #fff7f1 48%, #d9bdad 100%);
  border-radius: 28px;
}

.beauty-photo span {
  position: absolute;
  left: 30%;
  top: 38%;
  width: 34%;
  height: 32%;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px 999px 96px 96px;
  filter: blur(0.2px);
  pointer-events: none;
}

.beauty-photo i {
  position: absolute;
  right: 16%;
  top: 14%;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.appointment-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 96px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(122, 88, 72, 0.13);
  backdrop-filter: blur(14px);
}

.appointment-panel p { margin-bottom: 4px; color: var(--accent-dark); font-weight: 800; }
.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.time-grid span {
  min-width: 64px;
  padding: 8px 12px;
  background: var(--graphite);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-stats span {
  padding: 12px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.mini-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 13px 14px;
  background: rgba(45, 41, 39, 0.9);
  border-radius: 20px;
  color: var(--white);
}

.mini-benefit span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(145deg, var(--accent), #efd5c9);
  border-radius: 50%;
}

.mini-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }

#benefits .cards-grid.four {
  grid-template-columns: repeat(5, 1fr);
}

.info-card,
.service-card,
.master-card,
.review-card,
.step-card,
.booking-form,
.cta-box,
.price-list,
.faq-item {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(122, 88, 72, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.info-card:hover,
.service-card:hover,
.master-card:hover,
.review-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 143, 122, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 72px rgba(122, 88, 72, 0.16);
}

.info-card,
.service-card,
.review-card,
.step-card {
  padding: 26px;
}

.service-card::before,
.info-card::before {
  content: "✦";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(145deg, var(--accent), #efd5c9);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(201, 143, 122, 0.24);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  left: 36px;
  top: 146px;
  z-index: 2;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.76);
}

.service-photo {
  position: relative;
  z-index: 1;
  height: 170px;
  margin: -6px -6px 22px;
  overflow: hidden;
  background: #f3ded6;
  border-radius: 22px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(45, 41, 39, 0.08));
  pointer-events: none;
}

.service-card:hover .service-photo img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle, rgba(201, 143, 122, 0.16), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.service-card:hover::after {
  transform: scale(1.18);
  opacity: 0.92;
}

.master-card {
  padding: 18px;
}

.master-photo {
  height: 260px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #e9c8bb, #fff8f2);
}

.master-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

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

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

.beauty-work {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease;
}

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

.beauty-work::before,
.beauty-work::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.beauty-work::before {
  width: 170px;
  height: 170px;
  right: -34px;
  top: -34px;
  background: rgba(255, 255, 255, 0.36);
}

.beauty-work::after {
  width: 86px;
  height: 86px;
  left: 28px;
  bottom: 34px;
  background: rgba(45, 41, 39, 0.08);
}

.beauty-work span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 850;
}

.manicure { background: linear-gradient(145deg, #efd0c4, #fff7f1); }
.brows { background: linear-gradient(145deg, #d7b39f, #f9eadf); }
.lashes { background: linear-gradient(145deg, #f3ded6, #cfaa98); }
.makeup { background: linear-gradient(145deg, #eec9bc, #fff3ed); }
.hair { background: linear-gradient(145deg, #d8c2b5, #fff9f4); }
.care { background: linear-gradient(145deg, #f2d8cc, #e6c0af); }

.atmosphere-section {
  overflow: hidden;
}

.atmosphere-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  z-index: -1;
  width: min(980px, calc(100vw - 32px));
  height: 360px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(201, 143, 122, 0.16), transparent 68%),
    linear-gradient(118deg, transparent 16%, rgba(255, 255, 255, 0.72) 48%, transparent 56%);
  filter: blur(12px);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.atmosphere-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.atmosphere-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 78px rgba(122, 88, 72, 0.18);
}

.atmosphere-card::before,
.atmosphere-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.atmosphere-card::before {
  width: 220px;
  height: 220px;
  right: -54px;
  top: -48px;
  background: rgba(255, 255, 255, 0.42);
}

.atmosphere-card::after {
  left: 36px;
  bottom: 72px;
  width: 96px;
  height: 96px;
  background: rgba(45, 41, 39, 0.07);
}

.atmosphere-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: var(--graphite);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.atmosphere-card.space {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), transparent 42%),
    radial-gradient(circle at 30% 32%, rgba(201, 143, 122, 0.26), transparent 9rem),
    linear-gradient(145deg, #f7e6dc, #fffaf6);
}

.atmosphere-card.detail {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), transparent 38%),
    radial-gradient(circle at 70% 30%, rgba(185, 140, 122, 0.28), transparent 8rem),
    linear-gradient(145deg, #ead1c5, #fff8f1);
}

.atmosphere-card.result {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), transparent 40%),
    radial-gradient(circle at 34% 24%, rgba(201, 143, 122, 0.22), transparent 8rem),
    linear-gradient(145deg, #f1d9ce, #dfbeae);
}

.price-list {
  overflow: hidden;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.price-list div:last-child { border-bottom: 0; }
.price-list strong { color: var(--accent-dark); }
.note { margin: 18px 0 0; color: var(--muted); text-align: center; }

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

.step-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 900;
}

.faq-container { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: transparent;
  border: 0;
  color: var(--graphite);
  font-weight: 850;
  text-align: left;
}

.faq-item button span {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 143, 122, 0.45);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.22s ease;
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 143, 122, 0.28), transparent 18rem),
    radial-gradient(circle at 8% 100%, rgba(255, 255, 255, 0.72), transparent 15rem),
    linear-gradient(128deg, transparent 0%, rgba(201, 143, 122, 0.12) 48%, transparent 56%),
    rgba(255, 255, 255, 0.72);
}

.cta-box::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(201, 143, 122, 0.22);
  border-radius: 52px;
  transform: rotate(18deg);
  box-shadow: inset 0 0 46px rgba(201, 143, 122, 0.08);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  min-width: 190px;
  min-height: 58px;
  box-shadow: 0 18px 44px rgba(45, 41, 39, 0.18);
}

.cta-note {
  margin: 12px 0 0;
  font-weight: 800;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 30px;
}

.booking-form::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 143, 122, 0.16), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-form > * {
  position: relative;
  z-index: 1;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 14px 16px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.booking-form textarea { resize: vertical; }

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: rgba(201, 143, 122, 0.62);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(201, 143, 122, 0.12);
}

.booking-form .field-error {
  border-color: #c35f5f;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-message.success { color: #647a4d; }
.form-message.error { color: #b55353; }
.booking-form small,
.form-hint {
  color: var(--muted);
}

.form-hint {
  margin: -4px 0 0;
  font-weight: 750;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 143, 122, 0.2), transparent 18rem),
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 56%),
    var(--graphite);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.28;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.site-footer .logo,
.site-footer p {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0;
  opacity: 0.78;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  transition: transform 0.22s ease, background 0.22s ease;
}

.footer-cta:hover {
  background: rgba(201, 143, 122, 0.24);
  transform: translateY(-2px);
}

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .hero-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 76px; }
  .cards-grid.four,
  #benefits .cards-grid.four,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .atmosphere-card.result {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .burger { display: grid; }
  .nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    padding: 13px 12px;
    border-radius: 14px;
  }
  .nav a:hover { background: rgba(201, 143, 122, 0.08); }
  h1 { font-size: 42px; }
  .hero-actions,
  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }
  .cards-grid.three,
  .cards-grid.four,
  #benefits .cards-grid.four,
  .beauty-gallery,
  .atmosphere-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .atmosphere-card.result {
    grid-column: auto;
  }
  .section-head,
  .section-head.align-left {
    text-align: left;
  }
  .cta-box,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  h2 { font-size: 34px; }
  .hero::after,
  body::after {
    opacity: 0.22;
  }
  .floating-note {
    position: relative;
    inset: auto;
    display: inline-flex;
    margin: 0 0 10px;
    animation: none;
  }
  .note-bottom {
    display: none;
  }
  .beauty-photo { min-height: 320px; }
  .appointment-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -72px;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .atmosphere-card {
    min-height: 240px;
  }
  .price-list div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
