/* ============================================================
   ВЫСОТА — светлый «отельный» стиль по референсу deart-13.ru:
   белый фон, Raleway, фирменный винно-бордовый, тонкие линейные
   иконки, рамочные карточки, кнопки со скруглением 10px.
   ============================================================ */

:root {
  --wine: #722839;
  --wine-dark: #5a1f2d;
  --wine-light: #9a4457;
  --wine-pale: #f7eff1;
  --ink: #222222;
  --ink-soft: #555555;
  --promo: #e02020;
  --gold: #f0b429;
  --line: rgba(114, 40, 57, .35);
  --line-soft: rgba(114, 40, 57, .16);
  --bg: #ffffff;
  --bg-soft: #faf7f8;
  --radius: 10px;

  --font: 'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

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

::selection { background: var(--wine); color: #fff; }

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

/* ---------- Иконки ---------- */

.icon {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--lg { width: 44px; height: 44px; stroke-width: 1.3; }

/* ---------- Типографика ---------- */

h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--wine); }

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 36px;
  letter-spacing: .01em;
}

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              transform .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 4px 16px rgba(114, 40, 57, .22);
}
.btn--primary:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 40, 57, .3);
}
.btn--outline {
  background: #fff;
  border-color: var(--line);
  color: var(--wine);
}
.btn--outline:hover { border-color: var(--wine); background: var(--wine-pale); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Появление при скролле ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Шапка ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 2px 20px rgba(34, 34, 34, .1); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo__mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(114, 40, 57, .25);
  transition: transform .25s ease;
}
.logo:hover .logo__mark { transform: translateY(-2px); }
.logo__text { display: flex; flex-direction: column; line-height: 1.25; }
.logo__name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .14em;
  color: var(--wine);
  white-space: nowrap;
}
.logo__sub {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--wine);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--wine); }
.nav a:hover::after { transform: scaleX(1); }
.header__right { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 700; font-size: 15px; color: var(--ink); }
.header__phone:hover { color: var(--wine); }
.burger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 20px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: var(--wine); border-radius: 2px; }

/* ---------- Hero ---------- */

.hero { padding: 56px 0 72px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(30px, 3.6vw, 45px); margin-bottom: 28px; }
.hero__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}
.hero__row .icon { color: var(--wine); margin-top: 3px; }
.hero__row--promo { color: var(--promo); font-weight: 500; }
.hero__row--promo .icon { color: var(--promo); }
.hero__row--phone { font-size: 19px; font-weight: 700; }
.hero__row--phone a:hover { color: var(--wine); }
.hero__links { display: flex; gap: 28px; margin-top: 26px; }
.hero__links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.hero__links a:hover { color: var(--wine); border-color: var(--wine); }

.hero__banner {
  position: relative;
  min-height: 380px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1a1a24;
  display: flex;
  align-items: flex-end;
}
.hero__banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 18, .82) 0%, rgba(10, 10, 18, .35) 60%, rgba(10, 10, 18, .1) 100%);
}
.hero__banner-text {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 34px;
  border: 1px solid rgba(240, 180, 41, .5);
  border-radius: 4px;
  margin: 22px;
  max-width: 420px;
}
.hero__banner-text h2 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.hero__banner-text p { font-size: 14.5px; color: rgba(255, 255, 255, .85); }

/* ---------- Апартаменты ---------- */

.apartments { padding: 40px 0 70px; background: var(--bg); }

.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.apt-grid--single { grid-template-columns: 1fr; }

/* одна широкая карточка: галерея слева, описание справа */
.apt-card--wide {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
}
.apt-card--wide .apt-card__media { height: 100%; min-height: 460px; }
.apt-card__desc { font-size: 14.5px; color: var(--ink-soft); margin: -6px 0 18px; }
.apt-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease;
}
.apt-card:hover {
  box-shadow: 0 18px 48px rgba(34, 34, 34, .14);
  transform: translateY(-4px);
}
.apt-card__media { position: relative; height: 320px; background: #e8e4e5; overflow: hidden; }
.apt-card__gallery { position: absolute; inset: 0; }
.apt-card__gallery img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.apt-card__gallery img.is-active { opacity: 1; }
.apt-card__gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 13px; text-align: center; padding: 20px;
}
.apt-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.apt-card__nav:hover { background: #fff; color: var(--wine); }
.apt-card__nav--prev { left: 14px; }
.apt-card__nav--next { right: 14px; }
.apt-card__nav .icon { width: 17px; height: 17px; }
.apt-card__dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 2;
}
.apt-card__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease;
}
.apt-card__dots button.is-active { background: #fff; }

.apt-card__body { padding: 26px 28px 30px; }
.apt-card__body h3 { font-size: 20px; margin-bottom: 20px; }

.apt-card__prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.price-item .icon { width: 30px; height: 30px; color: var(--wine); stroke-width: 1.3; margin-bottom: 4px; }
.price-item__label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); }
.price-item__value { font-size: 17px; font-weight: 600; color: var(--ink); }

.apt-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
  font-size: 14px;
}
.apt-card__place { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.apt-card__place .icon { color: var(--wine); width: 18px; height: 18px; }
.apt-card__meta .stars { color: var(--ink-soft); }

.apt-card__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.chip .icon { width: 18px; height: 18px; color: var(--wine); }

/* ---------- Почему мы ---------- */

.features { padding: 30px 0 70px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature { text-align: center; }
.feature .icon--lg { color: var(--wine); margin: 0 auto 16px; display: block; }
.feature p { font-size: 14.5px; font-weight: 500; line-height: 1.5; }

/* ---------- Бронирование ---------- */

.booking { padding: 70px 0; background: var(--bg-soft); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking__text { color: var(--ink-soft); margin-bottom: 28px; max-width: 480px; }
.booking__facts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.booking__facts li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.booking__facts .icon { color: var(--wine); margin-top: 2px; }
.booking__facts strong { font-weight: 700; }
.booking__steps { display: flex; flex-direction: column; gap: 14px; }
.booking__steps li { display: flex; align-items: baseline; gap: 14px; font-size: 15px; color: var(--ink-soft); }
.booking__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--wine);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  transform: translateY(6px);
}

.booking__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 44px rgba(114, 40, 57, .08);
}
.field { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.field span {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
}
.field input, .field select {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, .22);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: rgba(34, 34, 34, .35); }
.field input:hover, .field select:hover { border-color: rgba(34, 34, 34, .4); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(114, 40, 57, .12);
}
.field-row { display: flex; gap: 14px; }
.field__static {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--bg-soft);
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
}

.booking__summary {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--bg-soft);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 4px 0;
}
.booking__summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); }
.booking__summary-row strong { color: var(--ink); font-weight: 700; }
.booking__summary-row--total {
  border-top: 1px solid var(--line-soft);
  padding-top: 11px; margin-top: 3px;
  font-size: 15.5px; color: var(--ink);
}
.booking__summary-row--total strong { color: var(--wine); font-size: 18px; }
.booking__form-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Отзывы ---------- */

.reviews { padding: 70px 0; }
.reviews__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.reviews__sources { display: flex; gap: 22px; }
.reviews__all {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.reviews__all:hover { color: var(--wine); border-color: var(--wine); }
.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px;
  margin: 0 -6px;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.review-card h3 { font-size: 18px; color: var(--ink); }
.stars--gold { display: flex; gap: 4px; color: var(--gold); }
.stars--gold .icon { width: 20px; height: 20px; fill: var(--gold); stroke: none; }
.review-card p { font-size: 14.5px; color: var(--ink); }
.review-card time { font-size: 13px; color: var(--ink-soft); margin-top: auto; }
.review-form {
  max-width: 560px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-form h3 { font-size: 19px; }
.review-form textarea {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, .22);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.review-form textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(114, 40, 57, .12);
}
.review-form__note { font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.review-form__thanks {
  max-width: 560px;
  margin: 30px auto 0;
  text-align: center;
  font-weight: 600;
  color: var(--wine);
}

.reviews__arrows { display: flex; justify-content: center; gap: 22px; margin-top: 26px; }
.reviews__arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  width: 56px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease, transform .2s ease;
}
.reviews__arrow:hover { color: var(--wine); transform: scale(1.15); }
.reviews__arrow .icon { width: 34px; height: 20px; stroke-width: 1.3; }

/* ---------- Об апартаментах ---------- */

.about { padding: 70px 0; background: var(--bg-soft); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.about__facts { display: flex; flex-direction: column; gap: 26px; }
.about__fact { display: flex; align-items: flex-start; gap: 18px; }
.about__fact .icon--lg { color: var(--wine); width: 36px; height: 36px; flex-shrink: 0; }
.about__fact p { font-size: 15px; }
.text-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--wine);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 1px;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover { color: var(--wine-dark); border-color: var(--wine); }
.about__text p { margin-bottom: 16px; font-size: 15.5px; }
.about__subtitle { font-size: 20px; margin: 28px 0 20px; }
.about__who { display: flex; flex-direction: column; gap: 18px; }
.who-item { display: flex; align-items: center; gap: 16px; }
.who-item .icon--lg { color: var(--wine); width: 34px; height: 34px; flex-shrink: 0; }
.who-item p { font-size: 14.5px; font-weight: 500; }

/* ---------- Фотолента башни ---------- */

.tower-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tower-gallery figure {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff;
}
.tower-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}
.tower-gallery figure:hover img { transform: scale(1.04); }
.tower-gallery figcaption {
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wine);
  text-align: center;
}

/* ---------- Карта ---------- */

.map { padding: 70px 0; }
.map__address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -16px 0 22px;
  font-weight: 600;
}
.map__address .icon { color: var(--wine); }
.map__frame {
  height: 440px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
}
.map__frame iframe { width: 100%; height: 100%; border: 0; }
.map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.map__actions .icon { width: 17px; height: 17px; }

/* ---------- Контакты ---------- */

.contacts { padding: 70px 0 80px; background: var(--bg-soft); }
.contacts__inner { text-align: center; }
.contacts .section-title { margin-bottom: 18px; }
.contacts__phone a {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
  transition: color .2s ease;
}
.contacts__phone a:hover { color: var(--wine); }
.contacts__note { color: var(--ink-soft); margin: 10px 0 28px; }
.contacts__links { display: flex; justify-content: center; gap: 16px; }

/* ---------- Футер ---------- */

.footer {
  background: var(--wine);
  color: rgba(255, 255, 255, .85);
  padding: 26px 0;
  font-size: 13.5px;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
  transition: opacity .2s ease;
}
.footer__social:hover { opacity: .8; }
.footer__social .icon { width: 18px; height: 18px; }

/* ---------- Плавающая панель брони ---------- */

.mini-bar {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translate(-50%, 160%);
  z-index: 90;
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  box-shadow: 0 14px 40px rgba(34, 34, 34, .18);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.mini-bar.is-visible { transform: translate(-50%, 0); }
.mini-bar__price { font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.mini-bar__price strong { color: var(--wine); font-weight: 700; }
.mini-bar .btn--sm { border-radius: 999px; }

/* ---------- Адаптив ---------- */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__banner { min-height: 300px; }
  .features__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 88px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 16px 32px rgba(34, 34, 34, .12);
  }
  .nav.nav--open { display: flex; }
  .header__right { display: none; }
  .burger { display: flex; }
  .apt-grid { grid-template-columns: 1fr; }
  .apt-card--wide { grid-template-columns: 1fr; }
  .apt-card--wide .apt-card__media { min-height: 320px; height: 320px; }
  .booking__inner { grid-template-columns: 1fr; gap: 44px; }
  .tower-gallery { grid-template-columns: 1fr; }
  .tower-gallery img { height: 220px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 32px 0 52px; }
  .hero__banner-text { margin: 14px; padding: 24px; }
  .features__grid { grid-template-columns: 1fr; gap: 28px; }
  .field-row { flex-direction: column; }
  .booking__form { padding: 24px 20px; }
  .reviews__track { grid-auto-columns: 85%; }
  .footer__inner { flex-direction: column; text-align: center; }
  .map__frame { height: 320px; }
  .mini-bar {
    left: 16px; right: 16px;
    transform: translateY(160%);
    width: calc(100% - 32px);
    justify-content: space-between;
  }
  .mini-bar.is-visible { transform: translateY(0); }
}

/* ---------- Печать ---------- */

@media print {
  .reveal { opacity: 1; transform: none; }
  .mini-bar, .burger { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--primary:hover, .btn--outline:hover, .apt-card:hover { transform: none; }
}
