/* ============================================================
   Татьяна · nail-мастер, Армавир
   Тема: чёрное серебро (графит, серебро, белый, serif-заголовки)
   ============================================================ */

:root {
  --bg: #f5f5f6;
  --bg-soft: #eaeaec;
  --card: #ffffff;
  --ink: #16171a;
  --muted: #55575c;
  --gold: #9a9ea6;
  --gold-d: #202226;
  --gold-l: #e5e6e9;
  --line: #e1e2e5;
  --red: #b3564c;
  --shadow: 0 8px 24px rgba(18, 19, 22, .06);
  --shadow-lg: 0 24px 60px rgba(18, 19, 22, .12);
  --shadow-btn: 0 10px 22px rgba(18, 19, 22, .28);
  --r: 20px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

section { scroll-margin-top: 90px; }

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

h2 { font-size: clamp(34px, 4.5vw, 48px); }

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 700;
  margin-bottom: 10px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__head .eyebrow { margin-bottom: 6px; }
.reviews__rating { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--gold-d); letter-spacing: .02em; transition: opacity .2s; }
.reviews__rating:hover { opacity: .7; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #3a3d42, var(--gold-d));
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .03em;
  box-shadow: var(--shadow-btn);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(18, 19, 22, .34); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(120, 123, 130, .07); box-shadow: none; }
.btn--sm { padding: 10px 22px; font-size: 12.5px; }
.btn--wide { width: 100%; }

/* ---------- Шапка ---------- */
.header {
  position: fixed;
  inset: 34px 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header.is-scrolled {
  background: rgba(245, 245, 246, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(18, 19, 22, .08);
  padding: 10px 0;
}
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  background: var(--ink);
  height: 34px;
}
.topbar__row { display: flex; align-items: center; justify-content: center; height: 100%; }
.topbar__address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #d5d6d9;
  white-space: nowrap;
  transition: color .2s;
}
.topbar__address svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar__address:hover { color: #ffffff; }
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-d);
  color: #ffffff;
  font-family: var(--serif);
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(18, 19, 22, .3);
}
.logo__text { font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.05; }
.logo__text small { display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav > a:not(.nav__btn) { position: relative; padding: 4px 0; color: var(--ink); }
.nav > a:not(.nav__btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav > a:not(.nav__btn):hover::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 174px 0 80px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
}
.hero::before { width: 480px; height: 480px; background: #e4e5e8; top: -120px; right: -120px; }
.hero::after { width: 420px; height: 420px; background: #d7d9dd; bottom: -160px; left: -140px; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  margin: 6px 0 18px;
  background: linear-gradient(120deg, var(--ink) 45%, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead { font-size: 18px; color: #4a4c52; max-width: 480px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.hero__chips li {
  font-size: 13px;
  font-weight: 600;
  color: #55575c;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

/* фото-заглушка в арке */
.hero__photo { position: relative; }
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 999px 999px var(--r) var(--r);
}
.hero__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px var(--r) var(--r);
  box-shadow: var(--shadow-lg);
}
.ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(85, 87, 92, .75);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.ph--arch { border-radius: 999px 999px var(--r) var(--r);
  background:
    radial-gradient(120% 90% at 20% 10%, #eef0f1 0%, transparent 60%),
    radial-gradient(120% 100% at 85% 90%, #dcdee1 0%, transparent 55%),
    linear-gradient(160deg, #e8e9eb, #d3d5d9);
  box-shadow: var(--shadow-lg);
}
.ph__icon { width: 54px; height: 54px; opacity: .5; }

/* ---------- Обо мне ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__text p { color: #4a4c52; margin-bottom: 18px; font-size: 16.5px; }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.adv {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.adv:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-l); }
.adv__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-l);
  color: var(--gold-d);
  margin-bottom: 16px;
}
.adv__icon svg { width: 24px; height: 24px; }
.adv h3 { font-size: 21px; margin-bottom: 6px; }
.adv p { font-size: 14px; color: var(--muted); }

/* ---------- Цены ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.price {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-l); }
.price--hit { border-color: var(--gold-d); background: linear-gradient(180deg, #f2f2f3, var(--card) 55%); box-shadow: 0 8px 24px rgba(18, 19, 22, .16); }
.price__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
}
.price h3 { font-size: 22px; color: var(--ink); }
.price__value {
  font-family: var(--sans);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  color: #000000;
  white-space: nowrap;
}
.price p { font-size: 15px; color: var(--muted); flex-grow: 1; }
.price__time {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: var(--gold-l);
  border-radius: 999px;
  padding: 5px 12px;
  align-self: flex-start;
}
.price__badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  transform: translateY(-2px);
  background: var(--gold-d);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(18, 19, 22, .3);
}
.prices__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 34px; }

/* ---------- Цитата-разделитель ---------- */
.statement {
  padding: 70px 0;
  position: relative;
}
.statement::before {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 34px;
}
.statement__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #35363b;
}

/* ---------- Портфолио ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: block; }
.tile img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .45s; }
.tile:hover img { transform: scale(1.05); }

/* 10-я плитка по центру последнего ряда (сетка в 3 колонки) */
@media (min-width: 621px) {
  .gallery > a:nth-child(3n+1):last-child { grid-column: 2; }
}

/* ---------- Отзывы / слайдер ---------- */
.slider { max-width: 760px; margin: 0 auto; overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform .55s cubic-bezier(.65, .05, .25, 1);
}
.review {
  flex: 0 0 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  text-align: center;
}
.review p { font-family: var(--serif); font-size: 24px; font-style: italic; line-height: 1.45; color: #26272b; }
.review footer { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--gold-d); letter-spacing: .06em; }
.slider__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.slider__nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-d);
  font-size: 22px;
  line-height: 1;
  transition: background .25s, color .25s;
}
.slider__nav button:hover { background: var(--gold); color: #ffffff; }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gold-l);
  transition: background .25s, transform .25s;
}
.slider__dots button.is-active { background: var(--gold-d); transform: scale(1.3); }

/* ---------- Запись ---------- */
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 30px;
}
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar__head h3 { font-size: 26px; }
.cal-nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-d);
  font-size: 20px;
  line-height: 1;
  transition: background .25s, color .25s, opacity .25s;
}
.cal-nav:hover:not(:disabled) { background: var(--gold); color: #ffffff; }
.cal-nav:disabled { opacity: .3; cursor: default; }

.calendar__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.calendar__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }

.day {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.day--pad { visibility: hidden; }
.day--free { background: var(--bg-soft); border-color: var(--line); cursor: pointer; }
.day--free:hover { border-color: var(--gold); transform: translateY(-2px); }
.day--free::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.day--busy { background: repeating-linear-gradient(135deg, #e8e9eb 0 4px, #f2f2f3 4px 8px); color: #86898f; cursor: default; }
.day--off { color: #a3a6ac; cursor: default; }
.day--past { color: #b3b5bb; cursor: default; }
.day--today { border-color: var(--gold-l); box-shadow: inset 0 0 0 1px var(--gold-l); }
.day--selected { background: var(--gold-d); color: #ffffff; box-shadow: 0 6px 16px rgba(18, 19, 22, .32); }
.day--selected::after { background: #ffffff; }

.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
}
.calendar__legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--free { background: var(--gold); }
.dot--busy { background: repeating-linear-gradient(135deg, #c9cbd0 0 3px, #eceded 3px 6px); }
.dot--off { background: #d5d7db; }

.slots { margin-top: 20px; border-top: 1px dashed var(--line); padding-top: 20px; }
.slots__hint { font-size: 14px; color: var(--muted); text-align: center; padding: 8px 0; }
.slots__date { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 12px; }
.slots__list { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  transition: background .2s, color .2s, transform .2s;
}
.slot:hover { background: rgba(120, 123, 130, .12); transform: translateY(-2px); }
.slot.is-active { background: var(--gold-d); border-color: var(--gold-d); color: #ffffff; box-shadow: 0 6px 16px rgba(18, 19, 22, .3); }
.slots__empty { font-size: 14px; color: var(--muted); }

/* форма */
.form h3 { font-size: 26px; margin-bottom: 18px; }
.form__chosen {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eceef0;
  border: 1px solid var(--gold-l);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.form__chosen-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
#chosenText { font-size: 14.5px; font-weight: 600; color: #26272b; }

.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 13px; font-weight: 700; color: #55575c; margin-bottom: 7px; }
.field em { color: var(--red); font-style: normal; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(120, 123, 130, .15);
}
.field input.is-error, .field select.is-error { border-color: var(--red); box-shadow: 0 0 0 4px rgba(179, 86, 76, .12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23202226' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* быстрые кнопки мессенджеров под формой */
.messengers { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.messengers a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--gold-d);
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.messengers a:hover { background: var(--gold-d); border-color: var(--gold-d); color: #ffffff; transform: translateY(-2px); }
.messengers svg { width: 20px; height: 20px; }
.messengers__label { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Контакты ---------- */
.contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.contact:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-l); }
.contact__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-l);
  color: var(--gold-d);
  margin-bottom: 16px;
}
.contact__icon svg { width: 24px; height: 24px; }
.contact h3 { font-size: 21px; margin-bottom: 4px; }
.contact p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.contact__go { font-size: 13px; font-weight: 700; color: var(--gold-d); }

/* ---------- Подвал ---------- */
.footer { background: #101113; color: #b9bbc1; padding: 34px 0; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 16px; color: #9a9da3; }

/* ---------- Модальное окно ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 10, 12, .55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__box {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 46px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .3s;
}
.modal.is-open .modal__box { transform: none; }
.modal__icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-d);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 19, 22, .34);
}
.modal__icon svg { width: 32px; height: 32px; }
.modal__box h3 { font-size: 30px; margin-bottom: 10px; }
.modal__box p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

/* ---------- Анимации появления ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Адаптив ---------- */
@media (max-width: 1020px) {
  .contacts { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    background: var(--bg-soft);
    box-shadow: -18px 0 50px rgba(18, 19, 22, .18);
    padding: 96px 30px 30px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 40;
  }
  .nav.is-open { transform: none; }
  .nav > a:not(.nav__btn) { font-size: 18px; padding: 10px 0; width: 100%; }
  .nav__btn { margin-top: 14px; }
  .burger { display: flex; z-index: 45; }

  .hero { padding-top: 154px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__photo { max-width: 420px; margin: 0 auto; }

  .booking__grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 620px) {
  .prices { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contacts { grid-template-columns: 1fr; }
  .about__cards { grid-template-columns: 1fr; }
  .review { padding: 32px 24px; }
  .review p { font-size: 20px; }
  .card { padding: 22px; }
  .hero__actions .btn { width: 100%; }

  /* Календарь: клетки дня меньше, точка-индикатор не перекрывает цифру */
  .calendar__week, .calendar__days { gap: 4px; }
  .day { font-size: 12.5px; border-radius: 10px; }
  .day--free::after { bottom: 3px; width: 4px; height: 4px; }

  /* Цены: заголовок и стоимость не сжимаются в одну строку */
  .price__top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .price__value { font-size: 26px; }
}

@media (max-width: 360px) {
  .calendar__week, .calendar__days { gap: 3px; }
  .day { font-size: 11.5px; border-radius: 8px; }
}
