/* ============ ЯСТРИГ — фирменные стили ============ */
:root {
  --cream: #FCE6C0;
  --cream-2: #FFF3DC;
  --maroon: #631918;
  --maroon-2: #4A1110;
  --red: #D8261B;
  --red-2: #B71E14;
  --ink: #2B1512;
  --shadow: 0 14px 40px rgba(74, 17, 16, .18);
  --radius: 18px;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--maroon);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--cream-2); }
img { display: block; max-width: 100%; }
a { color: inherit; }

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

/* --- Кнопки --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 13px 26px; border-radius: 12px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--red {
  background: var(--red); color: var(--cream-2);
  box-shadow: 0 8px 24px rgba(216, 38, 27, .35);
}
.btn--red:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--maroon { background: var(--maroon); color: var(--cream); }
.btn--maroon:hover { background: var(--maroon-2); transform: translateY(-2px); }
.btn--ghost { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn--ghost:hover { background: var(--maroon); color: var(--cream); }
.btn--lg { padding: 17px 34px; font-size: 18px; }

/* --- Шапка: прозрачная над тёмным hero, кремовая после прокрутки --- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  background: rgba(252, 230, 192, .9); backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(74, 17, 16, .14);
}
.header:not(.is-scrolled) .logo__text,
.header:not(.is-scrolled) .nav a,
.header:not(.is-scrolled) .header__phone { color: var(--cream); }
.header:not(.is-scrolled) .logo__hawk,
.footer__hawk { filter: brightness(0) invert(92%) sepia(14%) saturate(600%) hue-rotate(330deg); }
.header:not(.is-scrolled) .burger { border-color: var(--cream); }
.header:not(.is-scrolled) .burger span,
.header:not(.is-scrolled) .burger span::before,
.header:not(.is-scrolled) .burger span::after { background: var(--cream); }
.header__in { display: flex; align-items: center; gap: 28px; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__hawk { width: 44px; height: auto; }
.logo__text {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  letter-spacing: .04em; line-height: 1; display: flex; flex-direction: column;
}
.logo__text small {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; opacity: .75;
}
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  text-decoration: none; font-weight: 700; font-size: 15px;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 18px; }
.header__phone { text-decoration: none; font-weight: 800; font-size: 16px; }
.header__phone:hover { color: var(--red); }
.burger { display: none; }

/* --- Hero: тёмная полноэкранная секция на фото интерьера --- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: var(--cream); padding: 130px 0 110px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(26, 9, 8, .55), rgba(26, 9, 8, 0) 30%),
    linear-gradient(100deg, rgba(26, 9, 8, .96) 0%, rgba(43, 18, 16, .88) 42%,
                    rgba(74, 17, 16, .6) 78%, rgba(99, 25, 24, .5) 100%);
}
.hero__watermark {
  position: absolute; right: 2%; bottom: 3%; width: 44%; min-width: 340px;
  opacity: .05; filter: brightness(0) invert(100%); pointer-events: none;
}
.hero__award {
  position: absolute; left: 34px; bottom: 26px; width: 72px; z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .45));
}

.hero__in { position: relative; z-index: 2; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: 13.5px; letter-spacing: .22em; text-transform: uppercase;
  opacity: .85; margin-bottom: 22px;
}
.hero__eyebrow::before { content: ''; width: 34px; height: 3px; background: var(--red); border-radius: 2px; }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 8vw, 112px); line-height: 1.12; letter-spacing: .01em;
  text-transform: uppercase; display: grid;
}
.hero__title-accent { color: transparent; -webkit-text-stroke: 2px var(--cream); }
.hero__sub { max-width: 520px; font-size: 18px; margin-top: 26px; opacity: .9; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn--light { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn--light:hover { background: var(--cream); color: var(--maroon); }

.hero__meta {
  list-style: none; display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(252, 230, 192, .28);
  font-weight: 700; font-size: 14.5px;
}
.hero__meta li { display: inline-flex; align-items: center; gap: 9px; }
.hero__meta svg { width: 18px; height: 18px; color: #FF7A6B; flex: none; }
.hero__meta a { color: inherit; text-decoration: none; }
.hero__meta a:hover { color: #FF7A6B; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  width: 46px; height: 46px; border: 2px solid rgba(252, 230, 192, .5); border-radius: 50%;
  display: grid; place-items: center; color: var(--cream);
  animation: hero-bounce 2.4s ease-in-out infinite;
  transition: background .15s ease, border-color .15s ease;
}
.hero__scroll svg { width: 20px; height: 20px; }
.hero__scroll:hover { background: var(--red); border-color: var(--red); }
@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}

/* --- Секции --- */
.section { padding: 96px 0; }
.section--tint { background: var(--cream-2); }
.section__head { margin-bottom: 48px; }
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 4.6vw, 62px); letter-spacing: .02em; line-height: 1.05;
}
.section__title::after {
  content: ''; display: block; width: 74px; height: 5px; background: var(--red);
  margin-top: 14px; border-radius: 3px;
}
.section__note { margin-top: 14px; font-size: 17px; opacity: .8; }
.section__head--light .section__title, .section__head--light .section__note { color: var(--cream); }

/* --- Услуги: редакторский прайс-лист --- */
.services { border-top: 2px solid rgba(99, 25, 24, .3); }
.srow {
  position: relative; width: 100%; overflow: hidden;
  display: grid; grid-template-columns: 58px 1fr auto 52px; align-items: center; gap: 26px;
  padding: 30px 26px; background: none; border: none; text-align: left;
  border-bottom: 2px solid rgba(99, 25, 24, .3);
  color: var(--maroon); cursor: pointer; font-family: var(--font-body);
}
.srow { --srow-r: 18px; }
.srow::before {
  content: ''; position: absolute; inset: 7px 0; z-index: 0;
  background: var(--maroon); border-radius: var(--srow-r);
  /* clip-path вместо scaleX: углы остаются скруглёнными в каждом кадре */
  clip-path: inset(0 100% 0 0 round var(--srow-r));
  transition: clip-path .38s cubic-bezier(.65, 0, .35, 1);
}
.srow:hover::before, .srow:focus-visible::before {
  clip-path: inset(0 0 0 0 round var(--srow-r));
}
.srow > * { position: relative; z-index: 1; transition: color .2s ease .09s; }

.srow__num {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--red); letter-spacing: .06em;
}
.srow__name {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(22px, 3vw, 38px); line-height: 1.08; letter-spacing: .015em;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.srow__dur {
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  border: 1.5px solid rgba(99, 25, 24, .4); opacity: .8; white-space: nowrap;
  transition: border-color .2s ease .09s, color .2s ease .09s;
  /* оптическая компенсация: центр строки Oswald выше центра заглавных букв */
  transform: translateY(.28em);
}
.srow__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 38px); color: var(--red); white-space: nowrap;
}
.srow__go {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--maroon);
  display: grid; place-items: center; color: var(--maroon);
  transition: background .28s ease, border-color .28s ease, color .28s ease, transform .38s cubic-bezier(.65, 0, .35, 1);
  transform: rotate(-45deg);
}
.srow__go svg { width: 22px; height: 22px; }
.srow:hover .srow__num { color: #FF8D7E; }
.srow:hover .srow__name, .srow:hover .srow__price { color: var(--cream); }
.srow:hover .srow__dur { color: var(--cream); border-color: rgba(252, 230, 192, .55); opacity: 1; }
.srow:hover .srow__go {
  background: var(--red); border-color: var(--red); color: var(--cream-2);
  transform: rotate(0deg);
}
@media (prefers-reduced-motion: reduce) {
  .srow::before, .srow__go { transition: none; }
}

/* --- Фичи --- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.feature {
  padding: 30px 26px; background: var(--cream); border-radius: var(--radius);
  border: 2px solid rgba(99, 25, 24, .25); transition: border-color .2s ease, transform .2s ease;
}
.feature:hover { border-color: var(--maroon); transform: translateY(-4px); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--maroon);
  color: var(--cream); display: grid; place-items: center; margin-bottom: 18px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px;
}
.feature p { font-size: 15px; opacity: .85; }

/* --- Галерея --- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  border-radius: var(--radius); overflow: hidden; border: 3px solid var(--maroon);
  aspect-ratio: 4 / 5; background: var(--maroon);
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: auto; }
.gallery__item { cursor: zoom-in; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.gallery__item:hover img { transform: scale(1.045); filter: saturate(1.1); }

/* --- Лайтбокс галереи --- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 9, 8, .93); backdrop-filter: blur(6px);
  animation: lb-fade .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0; } }
.lightbox__stage { max-width: min(1200px, 88vw); max-height: 84vh; }
.lightbox__stage img {
  max-width: 100%; max-height: 84vh; border-radius: 14px;
  border: 3px solid rgba(252, 230, 192, .25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
  animation: lb-zoom .25s ease;
}
@keyframes lb-zoom { from { transform: scale(.96); opacity: 0; } }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(252, 230, 192, .1); border: 2px solid rgba(252, 230, 192, .45);
  color: var(--cream); cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  letter-spacing: .12em; color: var(--cream); opacity: .85;
}
@media (max-width: 700px) {
  .lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__stage { max-width: 94vw; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__stage img { animation: none; }
}

/* --- Запись --- */
.booking {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(216, 38, 27, .35), transparent 60%),
    var(--maroon);
  padding: 96px 0 110px;
  border-top: 6px solid var(--red);
}
.widget {
  background: var(--cream); border-radius: 24px; padding: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.widget__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 42px; }
.widget__col { min-width: 0; }
.widget__block + .widget__block { margin-top: 30px; }
.widget__label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px;
}
.widget__num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: var(--cream-2);
  display: grid; place-items: center; font-size: 15px; flex: none;
}

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 2px solid var(--maroon); background: var(--cream-2); color: var(--maroon);
  border-radius: 999px; padding: 9px 18px; font-family: var(--font-body);
  font-weight: 700; font-size: 14.5px; cursor: pointer;
  transition: background .13s ease, color .13s ease;
}
.pill.is-active { background: var(--maroon); color: var(--cream); }

/* --- Кастомный селект услуги --- */
.sselect { position: relative; }
.sselect__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--cream-2); border: 2px solid var(--maroon); border-radius: 12px;
  padding: 13px 16px; font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color .13s ease, box-shadow .13s ease;
}
.sselect__btn:focus-visible { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(216, 38, 27, .18); }
.sselect__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sselect__value em { font-style: normal; color: var(--red); }
.sselect__chevron { width: 20px; height: 20px; flex: none; color: var(--maroon); transition: transform .18s ease; }
.sselect.is-open .sselect__chevron { transform: rotate(180deg); }
.sselect__list {
  position: absolute; inset: calc(100% + 8px) 0 auto 0; z-index: 20;
  list-style: none; background: var(--cream-2); border: 2px solid var(--maroon);
  border-radius: 14px; box-shadow: 0 24px 60px rgba(43, 21, 18, .3);
  max-height: 330px; overflow-y: auto; padding: 6px;
}
.sselect__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 13px; border-radius: 9px; cursor: pointer;
}
.sselect__opt + .sselect__opt { margin-top: 2px; }
.sselect__opt-name { font-weight: 700; font-size: 14.5px; }
.sselect__opt-name small { display: block; font-weight: 600; font-size: 12px; opacity: .6; }
.sselect__opt-price { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--red); white-space: nowrap; }
.sselect__opt:hover { background: var(--maroon); color: var(--cream); }
.sselect__opt:hover .sselect__opt-price { color: #FF9C8E; }
.sselect__opt.is-selected { background: rgba(216, 38, 27, .12); box-shadow: inset 3px 0 0 var(--red); }
.sselect__opt.is-selected:hover { background: var(--maroon); }
.pill small { display: block; font-weight: 600; font-size: 11.5px; opacity: .75; }
.pill.is-active small { opacity: .85; }

.days { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.day {
  flex: none; width: 64px; padding: 9px 0 11px; text-align: center;
  border: 2px solid var(--maroon); border-radius: 14px; background: var(--cream-2);
  cursor: pointer; transition: background .13s ease, color .13s ease;
}
.day b { display: block; font-size: 19px; font-family: var(--font-display); font-weight: 600; }
.day span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.day.is-active { background: var(--red); border-color: var(--red); color: var(--cream-2); }
.day.is-active span { opacity: .9; }
.day.is-weekend span { color: var(--red); }
.day.is-active.is-weekend span { color: var(--cream-2); }

.slots-wrap { position: relative; min-height: 128px; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 9px; }

/* Оверлей загрузки расписания */
.slots-loader {
  position: absolute; inset: -6px; z-index: 5; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(252, 230, 192, .78); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.slots-loader.is-on { opacity: 1; visibility: visible; }
.slots-loader img {
  width: 52px; height: auto;
  animation: hawk-soar 1.3s ease-in-out infinite;
  filter: drop-shadow(0 10px 14px rgba(99, 25, 24, .3));
}
@keyframes hawk-soar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}
.slots-loader span { font-weight: 800; font-size: 13.5px; color: var(--maroon); letter-spacing: .02em; }
@media (prefers-reduced-motion: reduce) {
  .slots-loader img { animation: none; }
}
.slot {
  padding: 11px 0; text-align: center; border-radius: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .04em;
  border: 2px solid var(--maroon); background: var(--cream-2); color: var(--maroon);
  cursor: pointer; transition: background .12s ease, color .12s ease;
}
.slot:hover:not(:disabled) { background: var(--maroon); color: var(--cream); }
.slot.is-active { background: var(--red); border-color: var(--red); color: var(--cream-2); }
.slot:disabled {
  background: transparent; border-color: rgba(99, 25, 24, .3); color: rgba(99, 25, 24, .38);
  cursor: not-allowed; text-decoration: line-through;
}
.slots__empty { grid-column: 1 / -1; font-weight: 600; opacity: .75; padding: 8px 2px; }
.slots__legend { display: flex; gap: 20px; margin-top: 12px; font-size: 13px; font-weight: 700; flex-wrap: wrap; }
.slots__dur { color: var(--red-2); }
.slots__legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.dot--free { background: var(--cream-2); border: 2px solid var(--maroon); }
.dot--busy { background: rgba(99, 25, 24, .25); }

.widget__col--form { border-left: 2px dashed rgba(99, 25, 24, .3); padding-left: 42px; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-weight: 800; font-size: 13.5px; margin-bottom: 7px; }
.field em { font-style: normal; font-weight: 600; opacity: .6; }
.field input, .field textarea {
  width: 100%; border: 2px solid var(--maroon); border-radius: 12px;
  background: var(--cream-2); padding: 12px 15px; font-family: var(--font-body);
  font-size: 16px; font-weight: 600; color: var(--ink); outline: none;
  transition: border-color .13s ease, box-shadow .13s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(216, 38, 27, .18);
}
.field.is-error input {
  border-color: var(--red); background: #FFEBE0;
  box-shadow: 0 0 0 3px rgba(216, 38, 27, .22);
}
.field textarea { resize: vertical; }

.widget__summary { min-height: 24px; font-weight: 700; font-size: 14.5px; margin: 6px 0 14px; color: var(--red-2); }
.widget__submit { width: 100%; }
.widget__error { margin-top: 12px; color: var(--red-2); font-weight: 700; }
.widget__hint { margin-top: 14px; font-size: 12px; opacity: .6; }

.widget__success { text-align: center; padding: 30px 10px; }
.widget__check { width: 74px; height: 74px; color: var(--red); margin: 0 auto 18px; }
.widget__success h3 {
  font-family: var(--font-display); font-size: 38px; font-weight: 700; text-transform: uppercase;
}
.widget__success p { margin-top: 10px; font-size: 17px; }
.widget__success-note { opacity: .8; }
.widget__success .btn { margin-top: 22px; }

/* --- Контакты --- */
.contacts { display: grid; grid-template-columns: 1fr 1.2fr; gap: 42px; align-items: center; }
.contacts__addr {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1; text-transform: uppercase;
}
.contacts__phone {
  display: inline-block; margin-top: 18px; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px);
  color: var(--red);
}
.contacts__phone:hover { color: var(--red-2); }
.contacts__rows { margin: 20px 0 26px; display: grid; gap: 8px; font-size: 16px; }
.contacts__rows a { color: var(--red); font-weight: 800; text-decoration: none; }
.contacts__map {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--maroon); box-shadow: var(--shadow);
}
.contacts__map img { width: 100%; transition: transform .4s ease; }
.contacts__map:hover img { transform: scale(1.03); }
.contacts__map-hint {
  position: absolute; left: 14px; bottom: 14px; background: var(--maroon); color: var(--cream);
  font-weight: 800; font-size: 13.5px; padding: 8px 14px; border-radius: 999px;
}

/* --- Подвал --- */
.footer { background: var(--maroon-2); color: var(--cream); padding: 40px 0; }
.footer__in { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.footer__brand small { display: block; font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }
.footer__hawk { width: 40px; filter: brightness(0) invert(92%) sepia(14%) saturate(600%) hue-rotate(330deg); }
.footer__nav { display: flex; gap: 22px; margin-left: auto; }
.footer__nav a { text-decoration: none; font-weight: 700; font-size: 14px; opacity: .85; }
.footer__nav a:hover { opacity: 1; color: #ffb3a6; }
.footer__copy { width: 100%; font-size: 13px; opacity: .55; }

/* --- Анимации появления --- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
}

/* --- Адаптив --- */
@media (max-width: 1000px) {
  .widget__grid { grid-template-columns: 1fr; gap: 34px; }
  .widget__col--form { border-left: 0; padding-left: 0; border-top: 2px dashed rgba(99,25,24,.3); padding-top: 30px; }
  .contacts { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; position: fixed; top: 76px; left: 0; right: 0;
    background: var(--cream-2); flex-direction: column; gap: 0; padding: 10px 24px 18px;
    box-shadow: 0 20px 40px rgba(74,17,16,.2); }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; font-size: 18px; border-bottom: 1px solid rgba(99,25,24,.14); }
  .burger {
    display: grid; place-items: center; width: 42px; height: 42px;
    background: none; border: 2px solid var(--maroon); border-radius: 10px; cursor: pointer;
  }
  .burger span, .burger span::before, .burger span::after {
    content: ''; display: block; width: 20px; height: 2.6px; background: var(--maroon);
    border-radius: 2px; position: relative; transition: transform .2s ease;
  }
  .burger span::before { position: absolute; top: -6px; }
  .burger span::after { position: absolute; top: 6px; }
  .header__phone { display: none; }
  .nav a { color: var(--maroon) !important; }
  .hero { padding: 110px 0 150px; }
  .hero__award { width: 52px; left: 16px; bottom: 16px; }
  .hero__watermark { min-width: 300px; right: -20%; }
  .hero__meta { gap: 14px 24px; }
  .hero__scroll { display: none; }
  .section { padding: 66px 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
  .widget { padding: 26px 20px; }
}
@media (max-width: 700px) {
  .srow { --srow-r: 14px; grid-template-columns: 1fr 46px; grid-template-rows: auto auto; gap: 8px 18px; padding: 20px 12px; }
  .srow::before { inset: 4px 0; }
  .srow__num { display: none; }
  .srow__name { grid-column: 1; gap: 10px; }
  .srow__price { grid-column: 1; grid-row: 2; }
  .srow__go { grid-column: 2; grid-row: 1 / span 2; width: 46px; height: 46px; }
}
@media (max-width: 560px) {
  .header__cta { display: none; }
  .hero__title { font-size: clamp(44px, 12vw, 64px); }
  .hero__actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; gap: 14px; }
  .gallery__item--wide { grid-column: auto; }
  .footer__nav { margin-left: 0; flex-wrap: wrap; }
}
