/* GOLDRENTAL — самостоятельный статический сайт, никак не связан с rental_store */

:root {
  --bg: #150f1f;
  --surface: #201729;
  --surface-2: #2a1e37;
  --border: #3f2f54;
  --text: #f6f0ff;
  --text-dim: #bda9d9;
  --text-faint: #83719f;
  --purple: #7c3aed;
  --gold: #e6b64f;
  --rose: #d47fb0;
  --gradient: linear-gradient(120deg, var(--purple) 0%, var(--rose) 55%, var(--gold) 100%);
  --radius: 10px;
  --shadow-glow: 0 0 70px rgba(230, 182, 79, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  margin: 0;
}

a { color: inherit; }

/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(21, 15, 31, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-weight: 700; color: #150f1f; font-size: 1.1rem;
  flex-shrink: 0;
}

nav.main-nav { display: flex; gap: 30px; font-size: 0.9rem; color: var(--text-dim); letter-spacing: 0.02em; }
nav.main-nav a { text-decoration: none; transition: color 0.15s; }
nav.main-nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: 0.02em;
  font-size: 0.88rem; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-primary { background: var(--gradient); color: #150f1f; box-shadow: 0 12px 30px -8px rgba(230, 182, 79, 0.45); }
.btn { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.15s; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px -10px rgba(230, 182, 79, 0.55); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 42px; height: 42px; color: var(--text); font-size: 1.1rem; }

/* ---------- hero ---------- */

.hero {
  position: relative; padding: 100px 0 92px;
  background:
    radial-gradient(ellipse 900px 520px at 12% -10%, rgba(124, 58, 237, 0.32), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 15%, rgba(230, 182, 79, 0.16), transparent 55%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: "Manrope", sans-serif; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.18em; margin-bottom: 20px; font-weight: 700; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gradient); }

.hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.08; font-style: italic; }
.hero h1 .accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.hero p.lead { margin: 26px 0 36px; color: var(--text-dim); font-size: 1.1rem; max-width: 46ch; font-family: "Manrope", sans-serif; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-stats .stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--gold); }
.hero-stats .stat span { font-size: 0.8rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 380px; height: 380px;
  top: -130px; left: 5%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32), transparent 70%);
  animation: orb-float-a 18s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px;
  bottom: -110px; right: 8%;
  background: radial-gradient(circle, rgba(230, 182, 79, 0.28), transparent 70%);
  animation: orb-float-b 22s ease-in-out infinite;
}
@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 38px) scale(1.1); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, -28px) scale(1.08); }
}

/* аккуратно падающие слитки золота — фирменный штрих GoldRental */
.gold-rain { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gold-bar {
  position: absolute;
  top: -60px;
  width: 30px;
  height: 14px;
  background: linear-gradient(135deg, #fff3c4 0%, var(--gold) 50%, #a9782f 100%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  border-radius: 2px;
  box-shadow: 0 6px 16px -4px rgba(230, 182, 79, 0.5);
  opacity: 0;
  animation-name: gold-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.gold-bar::after {
  content: "";
  position: absolute;
  top: 2px; left: 4px; right: 10px;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}
@keyframes gold-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  6% { opacity: 0.85; }
  90% { opacity: 0.85; }
  100% { transform: translateY(640px) rotate(18deg); opacity: 0; }
}
.gb-1 { left: 5%;  width: 26px; height: 12px; animation-duration: 5.5s; animation-delay: 0s; }
.gb-2 { left: 20%; width: 34px; height: 16px; animation-duration: 7s; animation-delay: 1.25s; }
.gb-3 { left: 38%; width: 24px; height: 11px; animation-duration: 5s; animation-delay: 2.5s; }
.gb-4 { left: 55%; width: 32px; height: 15px; animation-duration: 6.5s; animation-delay: 0.6s; }
.gb-5 { left: 72%; width: 27px; height: 13px; animation-duration: 6s; animation-delay: 2s; }
.gb-6 { left: 88%; width: 30px; height: 14px; animation-duration: 7.5s; animation-delay: 3.25s; }
.gb-7  { left: 12%; width: 22px; height: 10px; animation-duration: 4.8s;  animation-delay: 1.7s; }
.gb-8  { left: 46%; width: 28px; height: 13px; animation-duration: 6.3s; animation-delay: 3.9s; }
.gb-9  { left: 63%; width: 24px; height: 11px; animation-duration: 5.3s; animation-delay: 0.3s; }
.gb-10 { left: 96%; width: 26px; height: 12px; animation-duration: 6.8s; animation-delay: 2.6s; }

.hero-visual {
  position: relative; aspect-ratio: 1 / 1.05; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  perspective: 1000px;
  z-index: 1;
}
.hero-visual::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 180deg, var(--purple), var(--rose), var(--gold), var(--purple));
  opacity: 0.2; filter: blur(60px); animation: spin 16s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* вращающийся золотой компьютер — фирменная анимация GoldRental */
.hero-visual .glyph {
  position: relative;
  font-size: 7.2rem;
  transform-style: preserve-3d;
  animation: gold-spin 8s linear infinite, gold-shine 2.6s ease-in-out infinite;
}
.hero-visual .glyph-img {
  position: relative;
  width: 64%;
  max-width: 300px;
  object-fit: contain;
  border-radius: 12px;
  transform-style: preserve-3d;
  animation: gold-spin 8s linear infinite, gold-shine 2.6s ease-in-out infinite;
}
@keyframes gold-spin {
  0% { transform: rotateY(0deg) rotateX(4deg); }
  100% { transform: rotateY(360deg) rotateX(4deg); }
}
@keyframes gold-shine {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(230, 182, 79, 0.55)) drop-shadow(0 12px 30px rgba(0,0,0,0.55)); }
  50% { filter: drop-shadow(0 0 40px rgba(230, 182, 79, 0.9)) drop-shadow(0 12px 30px rgba(0,0,0,0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .glyph, .hero-visual .glyph-img, .hero-visual::before { animation: none !important; }
}

/* ---------- премиум-сервис ---------- */

.premium-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.premium-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.premium-item { text-align: center; padding: 18px 12px; }
.premium-item b {
  display: block; font-family: "Cormorant Garamond", serif; font-size: 2.1rem; color: var(--gold); margin-bottom: 6px;
}
.premium-item span { font-size: 0.86rem; color: var(--text-dim); font-family: "Manrope", sans-serif; }

/* ---------- sections ---------- */

section { padding: 96px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-style: italic; }
.section-head p { color: var(--text-dim); max-width: 46ch; margin: 12px 0 0; font-family: "Manrope", sans-serif; }

/* ---------- каталог: один крупный флагман + остальные в сетке ---------- */

.catalog-featured { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; margin-bottom: 22px; }
.flagship-card {
  background: var(--surface-2); border: 1px solid rgba(230, 182, 79, 0.4); border-radius: 18px;
  padding: 36px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden;
}
.flagship-card::before {
  content: ""; position: absolute; inset: -30%;
  background: conic-gradient(from 90deg, var(--gold), transparent 40%);
  opacity: 0.12; filter: blur(50px);
}
.flagship-card .tag {
  align-self: flex-start; font-family: "Manrope", sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  background: rgba(230, 182, 79, 0.18); color: var(--gold); border: 1px solid rgba(230, 182, 79, 0.4);
  position: relative;
}
.flagship-card .glyph { font-size: 4.2rem; position: relative; }
.flagship-card .glyph-img { width: 100%; height: 150px; object-fit: contain; position: relative; }
.flagship-card h3 { font-size: 1.9rem; position: relative; }
.flagship-card .spec { color: var(--text-dim); font-size: 0.95rem; position: relative; max-width: 40ch; }
.flagship-card .price-row { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: flex; align-items: baseline; justify-content: space-between; position: relative; }
.flagship-card .price { font-family: "Cormorant Garamond", serif; font-size: 2.3rem; font-weight: 700; }
.flagship-card .price span { font-size: 0.82rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }

.featured-side { display: flex; flex-direction: column; gap: 22px; }
.side-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 22px; display: flex; align-items: center; gap: 16px; flex: 1;
}
.side-card .glyph { font-size: 2rem; }
.side-card .glyph-img { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.side-card .side-body { flex: 1; }
.side-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.side-card .spec { color: var(--text-faint); font-size: 0.8rem; }
.side-card .price { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-weight: 700; white-space: nowrap; }
.side-card .price span { font-size: 0.7rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.device-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.device-card:hover { border-color: rgba(230, 182, 79, 0.5); }
.device-card .tag {
  position: absolute; top: 18px; right: 18px; font-family: "Manrope", sans-serif; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
  background: rgba(230, 182, 79, 0.14); color: var(--gold); border: 1px solid rgba(230, 182, 79, 0.35);
}
.device-card .glyph { font-size: 2.3rem; }
.device-card .glyph-img { width: 100%; height: 92px; object-fit: contain; }
.device-card h3 { font-size: 1.3rem; font-weight: 700; }
.device-card .spec { color: var(--text-faint); font-size: 0.86rem; font-family: "Manrope", sans-serif; }
.device-card .price-row { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: baseline; justify-content: space-between; }
.device-card .price { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; color: var(--text); font-weight: 700; }
.device-card .price span { font-size: 0.76rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }
.device-card .book-link { font-size: 0.82rem; color: var(--gold); text-decoration: none; font-weight: 600; font-family: "Manrope", sans-serif; }
.device-card .book-link:hover { text-decoration: underline; }

/* ---------- why: горизонтальный список вместо карточек ---------- */

.why-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.why-row { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); align-items: center; }
.why-row .glyph { font-size: 1.9rem; }
.why-row h3 { font-size: 1.1rem; margin-bottom: 6px; }
.why-row p { color: var(--text-dim); font-size: 0.92rem; margin: 0; font-family: "Manrope", sans-serif; max-width: 60ch; }

.cities-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.city-card { padding: 26px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.city-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.city-card p { margin: 0; color: var(--text-faint); font-size: 0.85rem; font-family: "Manrope", sans-serif; }
.city-card .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(230,182,79,0.18); }

.order-shell { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.order-shell h2 { font-size: 2rem; margin-bottom: 14px; font-style: italic; }
.order-shell p.lead { color: var(--text-dim); margin: 0 0 26px; max-width: 40ch; font-family: "Manrope", sans-serif; }

.contact-line { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--border); font-size: 0.94rem; font-family: "Manrope", sans-serif; }
.contact-line:first-of-type { border-top: none; }
.contact-line .glyph { color: var(--gold); width: 20px; text-align: center; }

form.order-form { display: flex; flex-direction: column; gap: 14px; }
form.order-form input, form.order-form select {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); font-family: "Manrope", sans-serif; font-size: 0.95rem;
}
form.order-form input::placeholder { color: var(--text-faint); }
form.order-form input:focus, form.order-form select:focus { outline: none; border-color: var(--gold); }
form.order-form .btn { margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--text-faint); margin: 4px 0 0; font-family: "Manrope", sans-serif; }
.form-success {
  opacity: 0; max-height: 0; margin-top: 0; padding: 0 16px; border-radius: 8px;
  background: rgba(230, 182, 79, 0.1); border: 1px solid transparent; color: var(--gold);
  font-size: 0.9rem; font-family: "Manrope", sans-serif; overflow: hidden; transform: translateY(-6px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.45s ease, margin-top 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}
.form-success.visible { opacity: 1; max-height: 200px; margin-top: 14px; padding: 14px 16px; border-color: rgba(230, 182, 79, 0.35); transform: translateY(0) scale(1); }

footer { border-top: 1px solid var(--border); padding: 46px 0 36px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
footer .brand { margin-bottom: 10px; }
footer .foot-note { color: var(--text-faint); font-size: 0.82rem; max-width: 40ch; font-family: "Manrope", sans-serif; }
footer .foot-links { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-dim); font-family: "Manrope", sans-serif; }
footer .foot-links a { text-decoration: none; }
footer .foot-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }

/* ---------- анимации и переходы ---------- */

.hero-grid > div:first-child > * {
  opacity: 0;
  animation: hero-rise-elegant 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: 0.02s; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: 0.12s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: 0.22s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: 0.32s; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: 0.42s; }
@keyframes hero-rise-elegant {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  opacity: 0;
  animation: hero-pop-gold 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards;
}
@keyframes hero-pop-gold {
  from { opacity: 0; transform: scale(0.88) rotateY(12deg) rotateX(-4deg); }
  to { opacity: 1; transform: scale(1) rotateY(0deg) rotateX(0deg); }
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
}
.reveal.in-view { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }

/* золотой блик, бегущий по флагманской карточке */
.flagship-card { position: relative; }
.flagship-card::after {
  content: "";
  position: absolute;
  top: -60%; left: -30%;
  width: 35%; height: 220%;
  background: linear-gradient(120deg, transparent, rgba(230, 182, 79, 0.22), transparent);
  transform: rotate(20deg);
  animation: gold-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gold-sweep {
  0% { left: -30%; }
  35% { left: 120%; }
  100% { left: 120%; }
}

.site-header { transition: background 0.3s, box-shadow 0.3s; }
.site-header.scrolled {
  background: rgba(21, 15, 31, 0.97);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.6);
}

nav.main-nav a { position: relative; }
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -6px;
  height: 2px;
  background: var(--gradient);
  transition: left 0.28s ease, right 0.28s ease;
}
nav.main-nav a:hover::after { left: 0; right: 0; }

.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

.device-card, .side-card {
  transition: border-color 0.25s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.device-card:hover, .side-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px -20px rgba(230, 182, 79, 0.5);
}
.device-card .glyph-img, .side-card .glyph-img { transition: transform 0.35s ease; }
.device-card:hover .glyph-img, .side-card:hover .glyph-img { transform: scale(1.08); }

.why-row { transition: padding-left 0.25s ease; }
.why-row:hover { padding-left: 8px; }
.why-row .glyph { display: inline-block; transition: transform 0.3s ease; }
.why-row:hover .glyph { transform: scale(1.2); }

.city-card { transition: border-color 0.25s; }
.city-card:hover { border-color: rgba(230, 182, 79, 0.4); }
.city-card .pulse { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(230, 182, 79, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(230, 182, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 182, 79, 0); }
}

.premium-item { transition: transform 0.25s ease; }
.premium-item:hover { transform: translateY(-3px); }

nav.main-nav.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 78px; left: 0; right: 0;
  background: #201729;
  padding: 18px 24px;
  border-bottom: 1px solid #3f2f54;
  animation: nav-drop 0.25s ease;
}
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid > div:first-child > *, .hero-visual { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero::before, .hero::after { animation: none !important; }
  .gold-rain { display: none !important; }
  .reveal { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
  .flagship-card::after { display: none; }
  .btn::before { display: none; }
  .city-card .pulse { animation: none !important; }
  nav.main-nav.nav-open { animation: none !important; }
}

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .catalog-featured { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .order-shell { grid-template-columns: 1fr; padding: 34px 24px; }
}
@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; text-align: left; }
  .hero { padding: 68px 0 58px; }
  .hero-stats { flex-wrap: wrap; row-gap: 18px; }
}
