/* ============================================================
   Furset · Банкетный конструктор — kp.furset.ru/banket/
   Палитра/язык — донор /konstruktor. Тёмный premium, золотой акцент.
   Open Sans 300-800, mobile-first, брейкпоинты 768 / 1024 / 1440.
   ============================================================ */

:root {
  --bg: #010B13;
  --bg-2: #021627;
  --bg-3: #0a1929;
  --text: #FBFFFE;
  --text-mute: #aaabbc;
  --gold: #FFAD05;
  --gold-soft: rgba(255,173,5,0.15);
  --green: #4BCA5A;
  --green-soft: rgba(75,202,90,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-pill: 50px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }
@media (min-width: 1440px) { .container { padding: 0 64px; } }

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }

/* ===== Glass-эффект (контур через mask) ===== */
.outline-gold, .outline-white, .outline-green { position: relative; isolation: isolate; }
.outline-gold::before, .outline-white::before, .outline-green::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.outline-gold::before { background: linear-gradient(135deg, rgba(255,173,5,1) 0%, rgba(255,173,5,0.15) 40%, rgba(255,173,5,0.05) 60%, rgba(255,173,5,1) 100%); }
.outline-white::before { background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.03) 60%, rgba(255,255,255,1) 100%); }
.outline-green::before { background: linear-gradient(135deg, rgba(75,202,90,1) 0%, rgba(75,202,90,0.15) 40%, rgba(75,202,90,0.05) 60%, rgba(75,202,90,1) 100%); }

.bg-gold { background: radial-gradient(ellipse at 0% 0%, rgba(255,173,5,0.20) 0%, rgba(255,173,5,0.08) 50%, rgba(255,173,5,0.03) 100%); }
.bg-white { background: radial-gradient(ellipse at 0% 0%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.02) 100%); }
.bg-green { background: radial-gradient(ellipse at 0% 0%, rgba(75,202,90,0.20) 0%, rgba(75,202,90,0.08) 50%, rgba(75,202,90,0.03) 100%); }

/* ===== Headings ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(30px, 5vw, 48px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 38px); letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-mute);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 720px;
  margin: 12px auto 0;
}
.section-head { text-align: center; margin-bottom: 32px; }
@media (min-width: 768px) { .section-head { margin-bottom: 40px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 18px; }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(255,173,5,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,173,5,0.4); }
.btn-gold:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

/* ===== HEADER ===== */
.site-header { padding: 16px 0; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(20px); background: rgba(1,11,19,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  isolation: isolate;
  transition: transform .15s ease;
}
.pill:hover { transform: translateY(-1px); }
.pill-logo { width: 180px; height: 56px; padding: 0 16px; justify-content: center; }
.logo-svg { width: 140px; height: auto; display: block; }
.header-nav { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pill-contact { height: 48px; padding: 0 18px 0 12px; gap: 10px; }
.pill-icon { width: 48px; height: 48px; padding: 0; justify-content: center; }
.pill-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.pill-ico svg { display: block; }
.pill-label { font-size: 14px; color: var(--text); position: relative; z-index: 2; white-space: nowrap; }

@media (max-width: 640px) {
  .pill-logo { width: 140px; height: 48px; }
  .logo-svg { width: 110px; }
  .pill-contact .pill-label { display: none; }
  .pill-contact { width: 48px; padding: 0; justify-content: center; }
}

/* ===== HERO-строка (компактная) ===== */
.hero-line { padding: 28px 0 8px; text-align: center; }
@media (min-width: 768px) { .hero-line { padding: 44px 0 12px; } }
.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  border: 1px solid rgba(255,173,5,0.3);
}
.hero-line h1 { margin-bottom: 14px; }
.hero-line .hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-mute);
  max-width: 680px;
  margin: 0 auto;
}

/* ===== МИНИ-ОПРОС ===== */
.survey-section { padding: 24px 0 12px; }
.survey-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .survey-card {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 28px;
  }
}
.survey-field { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2; }
.survey-label { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.survey-opt { font-weight: 400; color: var(--text-mute); }

/* Counter (гости) */
.guests-counter {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.counter-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s ease;
  flex-shrink: 0;
}
.counter-btn:hover { transform: scale(1.06); }
.counter-btn:active { transform: scale(0.94); }
.counter-input {
  flex: 1; width: 100%; min-width: 0;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.counter-input::-webkit-outer-spin-button,
.counter-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.survey-presets { display: flex; flex-wrap: wrap; gap: 6px; }
.preset-chip {
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.preset-chip:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }
.preset-chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* Чипы повода */
.survey-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.occ-chip {
  padding: 9px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.occ-chip:hover { border-color: rgba(255,173,5,0.5); background: rgba(255,173,5,0.05); }
.occ-chip.is-active { border-color: var(--gold); background: var(--gold-soft); color: var(--gold); box-shadow: 0 0 0 3px rgba(255,173,5,0.15); }

/* Дата */
.quiz-input {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.quiz-input::placeholder { color: var(--text-mute); }
.quiz-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.quiz-input[type="date"] {
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.quiz-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.65; width: 20px; height: 20px;
  transition: opacity .15s ease;
}
.quiz-input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
@media (min-width: 768px) {
  .survey-date-input { max-width: 340px; min-width: 200px; }
  .survey-name-input { max-width: 340px; min-width: 200px; }
}

/* ===== ПАКЕТЫ ===== */
.packages-section { padding: 32px 0 48px; }
@media (min-width: 768px) { .packages-section { padding: 48px 0 72px; } }
.packages-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.packages-loader { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--text-mute); }
.loader-spin {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,173,5,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pkg-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 24px 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
@media (min-width: 768px) { .pkg-card { padding: 28px 24px; } }
.pkg-card:hover { transform: translateY(-4px); border-color: rgba(255,173,5,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.pkg-card.is-recommended {
  border-color: rgba(255,173,5,0.55);
  box-shadow: 0 0 0 1px rgba(255,173,5,0.4), 0 16px 44px rgba(0,0,0,0.45);
}
.pkg-card.is-recommended:hover { border-color: var(--gold); }

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(255,173,5,0.4);
  white-space: nowrap;
  z-index: 3;
}

.pkg-name { font-size: clamp(22px, 3vw, 26px); font-weight: 800; margin-bottom: 6px; }
.pkg-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pkg-desc { font-size: 14px; color: var(--text-mute); line-height: 1.5; margin-bottom: 18px; min-height: 42px; }

.pkg-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.pkg-price-from { font-size: 13px; color: var(--text-mute); }
.pkg-price-val { font-size: clamp(30px, 5vw, 38px); font-weight: 800; color: var(--gold); line-height: 1; }
.pkg-price-unit { font-size: 14px; color: var(--text-mute); }
.pkg-price-total { font-size: 13px; color: var(--text-mute); margin-bottom: 16px; }
.pkg-price-total b { color: var(--text); font-weight: 700; }

.pkg-meta {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  margin-bottom: 16px;
}
.pkg-tag {
  font-size: 12px; font-weight: 600;
  color: var(--text-mute);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.pkg-tag b { color: var(--text); font-weight: 700; }

.pkg-thumbs { display: flex; gap: 8px; margin-bottom: 8px; }
.pkg-thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.pkg-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pkg-thumb-more {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--gold);
  background: var(--gold-soft);
  font-weight: 800; font-size: 15px;
  text-align: center; line-height: 1.1;
}
.pkg-thumb-more small { display: block; font-size: 10px; font-weight: 600; color: var(--text-mute); }

.pkg-positions { font-size: 12px; color: var(--text-mute); margin-bottom: 18px; }

.pkg-spacer { flex: 1; }
.pkg-select {
  width: 100%;
  margin-top: auto;
}
.pkg-consent {
  margin: 12px 2px 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-mute);
  text-align: center;
  position: relative; z-index: 2;
}
.pkg-consent a { color: var(--text-mute); text-decoration: underline; }
.pkg-consent a:hover { color: var(--gold); }

.packages-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--text-mute);
}
.packages-error a { color: var(--gold); }

/* ===== ЧТО ВХОДИТ В ЦЕНУ ===== */
.included { padding: 24px 0 48px; }
@media (min-width: 768px) { .included { padding: 32px 0 72px; } }
.included-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) { .included-card { grid-template-columns: 1fr 1.3fr; padding: 44px 48px; gap: 48px; align-items: center; } }
.included-text { position: relative; z-index: 2; }
.included-text h2 { margin: 4px 0 10px; }
.included-lead { color: var(--text-mute); font-size: 15px; max-width: 420px; }
.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative; z-index: 2;
}
@media (min-width: 480px) { .included-list { grid-template-columns: 1fr 1fr; gap: 14px; } }
.included-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--text);
}
.inc-emo { font-size: 24px; line-height: 1; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-2); padding: 48px 0 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top {
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col { max-width: 420px; }
.footer-brand { font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 8px; }
.footer-about { color: var(--text-mute); font-size: 14px; margin: 10px 0 16px; }
.footer-cta { font-size: 15px; }
.footer-contact-cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.fcard {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
}
.fcard-ico { flex: 0 0 auto; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.footer-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-link { display: block; color: var(--text-mute); font-size: 14px; padding: 4px 0; transition: color .15s ease; }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: var(--text-mute);
}
.footer-socials { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.footer-soc-label { color: var(--text-mute); }
.footer-req { line-height: 1.6; }
.footer-pay { display: block; margin-top: 4px; }
.footer-pay b { color: var(--text); }
.footer-copy { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--text-mute); font-size: 13px; }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-contact-cards { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-req { text-align: right; }
}

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,11,19,0.85); backdrop-filter: blur(8px); animation: fadeIn .2s ease; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  isolation: isolate;
  animation: modalIn .25s ease;
  max-height: min(92vh, 92dvh);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.28);
}
.modal-card::before { display: none; }
@media (min-width: 480px) { .modal-card { padding: 40px 32px; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-x {
  position: absolute;
  right: 16px; top: 12px;
  width: 36px; height: 36px;
  background: transparent;
  color: var(--text-mute);
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.modal-x:hover { color: var(--text); }
.modal-card h2 { margin-bottom: 12px; position: relative; z-index: 2; }
.modal-text { color: var(--text-mute); font-size: 15px; margin-bottom: 20px; position: relative; z-index: 2; }
.modal-card .quiz-input { margin-bottom: 4px; position: relative; z-index: 2; }
.modal-or { text-align: center; margin: 20px 0 16px; color: var(--text-mute); font-size: 13px; position: relative; z-index: 2; }
.modal-msgs { display: flex; gap: 8px; position: relative; z-index: 2; }
.msg-btn {
  flex: 1;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s ease;
}
.msg-btn:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }

.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mute); margin: 12px 0 6px; position: relative; z-index: 2; }
.co-submit { width: 100%; margin-top: 16px; position: relative; z-index: 2; }

.quiz-error {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: var(--radius-sm);
  color: #ffb4b4;
  font-size: 14px;
  position: relative; z-index: 2;
}
.quiz-error[hidden] { display: none; }

/* Согласие 152-ФЗ в модалке */
.consent-block {
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  position: relative; z-index: 2;
}
.consent-law { font-size: 12px; font-weight: 700; color: var(--text); }
.consent-care { font-size: 12px; color: var(--text-mute); margin: 2px 0 8px; }
.consent-note { font-size: 12px; line-height: 1.5; color: var(--text-mute); }
.consent-note a { color: var(--gold); text-decoration: underline; }

/* Success */
.success-card { text-align: center; }
.success-ico {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff; font-size: 34px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Motion-reduce ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
