/* ═══════════════════════════════════════════════════════════════
   HotelBoost v4 — one measure, big type, no chrome.
   Orange means click. Dark bands cut with a shallow chevron.
   The reservation card recurs as the page's signature.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F6F4EF;
  --ink: #0F1722;
  --ink-soft: #3D4654;
  --muted: #5B6573;
  --line: #E9E4DA;
  --navy: #0C1A2B;
  --navy-2: #12233A;
  --on-navy: #EDF1F7;
  --on-navy-dim: rgba(237, 241, 247, 0.78);
  --accent: #D97706;
  --accent-deep: #B45309;
  --ok: #12855F;
  --r-card: 18px;
  --r-pill: 999px;
  --shadow: 0 10px 40px -12px rgba(16, 24, 40, 0.14);
  --shadow-big: 0 30px 80px -30px rgba(16, 24, 40, 0.45);
  --cut: 3.2vw;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* ── One measure ── */
.container { max-width: 1080px; margin: 0 auto; }
.section { padding: 110px 24px; position: relative; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background: var(--navy);
  color: var(--on-navy);
  clip-path: polygon(0 0, 50% var(--cut), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--cut));
  padding-top: calc(110px + var(--cut));
  z-index: 2;
}
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ── Type: one scale, big jump ── */
h1 {
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.section.dark h2 { color: #fff; }
h3 { font-size: 21px; font-weight: 800; line-height: 1.3; }
.sub {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}
.section.dark .sub, .section.dark p { color: var(--on-navy-dim); }
p { color: var(--ink-soft); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  min-height: 54px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 8px 24px -10px rgba(217, 119, 6, 0.55);
}
.btn:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--muted); }
.section.dark .btn-ghost { color: var(--on-navy); border-color: rgba(237, 241, 247, 0.35); }
.section.dark .btn-ghost:hover { background: rgba(237, 241, 247, 0.08); }
.link { font-weight: 800; font-size: 17px; color: var(--accent-deep); }
.link:hover { color: var(--accent); }
.section.dark .link { color: #E8A33D; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-row.center-r { justify-content: center; }
.section-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 44px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 22px;
  min-height: 68px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.nav-brand img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 15.5px; font-weight: 700; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav .btn { min-height: 46px; padding: 10px 20px; font-size: 15.5px; }
.nav .btn-viber { background: transparent; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
.nav .btn-viber:hover { background: var(--bg-soft); border-color: var(--muted); }
@media (max-width: 1080px) { .nav-links { display: none; } }
@media (max-width: 640px) { .nav .btn-cta { display: none; } }

/* ── Fixed Viber bar (mobile) ── */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(12, 26, 43, 0.97);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
}
.callbar .cb-viber { background: var(--accent); color: #fff; }
@media (max-width: 900px) {
  .callbar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ── Hero ── */
.hero { padding: 96px 24px 110px; }
.hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--accent-deep); }
.offer-line {
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  max-width: 620px;
  margin-bottom: 34px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  padding: 30px 32px 28px;
  max-width: 430px;
  margin-left: auto;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease 0.15s forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.stat-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 20px;
}
.stat-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.stat-num { font-size: clamp(48px, 5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 16px; color: var(--ink-soft); margin-top: 8px; }
.stat-bars { display: flex; align-items: flex-end; gap: 7px; height: 64px; margin: 24px 0 18px; }
.stat-bars i { flex: 1; background: #E4E9F0; border-radius: 5px 5px 0 0; display: block; }
.stat-bars i.hi { background: var(--navy); }
.stat-foot { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
@media (max-width: 900px) {
  .hero { padding: 56px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .stat-card { margin: 0 auto; }
  .hero .cta-row .btn { width: 100%; }
}

/* ── Trust strip ── */
.clients {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 24px;
  text-align: center;
}
.clients-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 34px; row-gap: 8px; }
.clients-row span { font-size: 16.5px; font-weight: 800; color: #8A93A3; white-space: nowrap; }
.clients-row .etc { color: var(--accent-deep); }

/* ── Hoteliers band, with a real face ── */
.hoteliers { background: var(--bg); padding: 100px 24px; }
.hoteliers-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}
.hoteliers-photos { position: relative; }
.hoteliers-photos .ph-hotel { width: 100%; height: auto; border-radius: var(--r-card); }
.hoteliers-photos .ph-face {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 38%;
  height: auto;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-big);
}
.hoteliers-grid h2 { margin-bottom: 16px; }
.hoteliers-grid p { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.6; max-width: 560px; }
@media (max-width: 900px) {
  .hoteliers-grid { grid-template-columns: 1fr; gap: 44px; }
  .hoteliers-photos { max-width: 420px; }
}

/* ── Additive chips ── */
.add-chips { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 40px 0 8px; }
.add-chip {
  border: 2px solid var(--line);
  border-radius: var(--r-card);
  padding: 18px 26px;
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
}
.add-chip small { display: block; font-size: 14px; font-weight: 700; color: var(--muted); margin-top: 2px; }
.add-chip.new { border-color: var(--ok); color: var(--ink); background: rgba(18, 133, 95, 0.06); }
.add-chip.new small { color: var(--ok); }

/* ── Proof shot ── */
.shot {
  background: #fff;
  border-radius: var(--r-card);
  padding: 10px;
  box-shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.55);
  max-width: 940px;
  margin: 48px auto 0;
}
.shot img { border-radius: 10px; width: 100%; height: auto; }
.shot-cap { text-align: center; font-size: 15px; color: var(--on-navy-dim); max-width: 660px; margin: 20px auto 0; }

/* ── The recurring reservation card ── */
.resv-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-big);
  padding: 26px 28px;
  font-size: 15px;
  max-width: 430px;
}
.resv-head { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.resv-subj { color: var(--ink); font-weight: 800; font-size: 17.5px; margin-bottom: 12px; }
.resv-line { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 15px; }
.resv-line b { color: var(--ink); font-variant-numeric: tabular-nums; }
.resv-paid {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 133, 95, 0.1);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-weight: 800;
  color: var(--ok);
}
.resv-reply { margin-top: 10px; margin-left: 8px; display: inline-flex; gap: 8px; font-weight: 800; color: var(--ink); font-size: 14.5px; }
.resv-reply span { color: var(--ok); }
/* floating mini version, the page's mascot */
.resv-float {
  position: absolute;
  bottom: 48px;
  right: 38px;
  width: 250px;
  padding: 18px 20px;
  transform: rotate(3deg);
  z-index: 3;
  pointer-events: none;
}
.resv-float .resv-subj { font-size: 15px; margin-bottom: 8px; }
.resv-float .resv-line { font-size: 13px; padding: 6px 0; }
.resv-float .resv-paid { font-size: 13.5px; padding: 7px 14px; margin-top: 10px; }
@media (max-width: 1250px) { .resv-float { display: none; } }

/* ── AI chat mockup ── */
.chat-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-big);
  padding: 28px;
  max-width: 460px;
  margin: 0 auto;
  transform: rotate(-2.2deg);
}
.module.dark .chat-card .chat-q, .chat-q {
  color: var(--ink);
  background: var(--bg-soft);
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-left: 40px;
  margin-bottom: 16px;
}
.chat-a {
  background: var(--navy);
  color: var(--on-navy);
  border-radius: 16px 16px 16px 4px;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.55;
  margin-right: 24px;
}
.chat-a b { color: #fff; }

/* ── Reference cards, press layout ── */
.refs { display: flex; flex-direction: column; gap: 24px; margin-top: 52px; }
.ref {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.ref:hover { box-shadow: var(--shadow); }
.ref img { width: 100%; height: 100%; object-fit: cover; }
.ref-body { padding: 30px 34px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.ref-place { font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.ref-body h3 { font-size: 24px; }
.ref-body p { font-size: 17px; line-height: 1.55; }
.ref-body .link { margin-top: 10px; }
@media (max-width: 800px) {
  .ref { grid-template-columns: 1fr; }
  .ref img { height: auto; object-fit: contain; }
}

/* ── Four full-width modules ── */
.module { padding: 110px 24px; position: relative; }
.module.soft { background: var(--bg-soft); }
.module.dark {
  background: var(--navy);
  color: var(--on-navy);
  clip-path: polygon(0 0, 50% var(--cut), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--cut));
  padding-top: calc(110px + var(--cut));
  z-index: 2;
}
.module.dark h2 { color: #fff; }
.module.dark p, .module.dark li { color: var(--on-navy-dim); }
.module-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.module-grid.flip .module-media { order: -1; }
.module-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.module.dark .module-num { color: #E8A33D; }
.module-body h2 { margin-bottom: 14px; }
.module-body .promise { font-size: clamp(18px, 1.9vw, 21px); margin-bottom: 20px; }
.module-body ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.module-body li { display: flex; gap: 12px; font-size: 17.5px; line-height: 1.5; color: var(--ink-soft); }
.module-body li::before { content: '✓'; color: var(--ok); font-weight: 800; }
.module.dark .module-body li::before { color: #7BD8B0; }
.module-media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-big);
  transform: rotate(-2.2deg);
}
.module-grid.flip .module-media img { transform: rotate(2.2deg); }
@media (max-width: 900px) {
  .module { padding: 76px 20px; }
  .module-grid { grid-template-columns: 1fr; gap: 40px; }
  .module-grid.flip .module-media { order: 0; }
  .module-media img { transform: rotate(0); }
  .module-body .btn { width: 100%; }
}

/* ── Mechanism ── */
.mech-grid {
  max-width: 1080px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.steps { display: flex; flex-direction: column; counter-reset: s; }
.step { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: s;
  content: counter(s);
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step b { display: block; font-size: 19px; margin-bottom: 3px; }
.step p { font-size: 16px; line-height: 1.55; }
.step .ok-word { color: var(--accent-deep); font-weight: 800; }
.count-rule {
  max-width: 1080px;
  margin: 56px auto 0;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--r-card);
  padding: 34px 38px;
}
.count-rule h3 { color: #fff; margin-bottom: 10px; font-size: 22px; }
.count-rule p { font-size: 17.5px; line-height: 1.6; color: var(--on-navy-dim); }
@media (max-width: 900px) {
  .mech-grid { grid-template-columns: 1fr; gap: 44px; }
  .resv-card { margin: 0 auto; }
  .count-rule { padding: 26px; }
}

/* ── Season timeline ── */
.season { max-width: 1080px; margin: 52px auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.season-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 22px; }
.season-step small {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.season-step b { display: block; font-size: 17.5px; line-height: 1.3; margin-bottom: 4px; }
.season-step p { font-size: 15px; line-height: 1.5; }
.season-note {
  margin: 44px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 1020px) { .season { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .season { grid-template-columns: 1fr; } }

/* ── Objection tiles ── */
.tiles { max-width: 1080px; margin: 52px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tile { background: var(--navy-2); border: 1px solid rgba(237, 241, 247, 0.1); border-radius: var(--r-card); padding: 28px 30px; }
.tile b { display: block; color: #fff; font-size: 19.5px; margin-bottom: 6px; }
.tile p { font-size: 16.5px; line-height: 1.55; color: var(--on-navy-dim); }
@media (max-width: 900px) { .tiles { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  padding: 22px 44px 22px 0;
  position: relative;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--accent-deep);
}
.faq details[open] summary::after { content: '−'; }
.faq .a { padding: 0 0 24px; font-size: 17px; color: var(--ink-soft); max-width: 720px; }

/* ── Close ── */
.final { text-align: center; }
.final .reprise { font-size: 16px; font-weight: 700; color: var(--on-navy-dim); max-width: 640px; margin: 0 auto 22px; }
.final h2 { color: #fff; max-width: 760px; margin: 0 auto 14px; }
.final .sub { margin: 0 auto 38px; }
.lead-form {
  max-width: 700px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
}
.lead-form input {
  min-height: 54px;
  border-radius: 14px;
  border: 2px solid rgba(237, 241, 247, 0.25);
  background: rgba(237, 241, 247, 0.06);
  color: #fff;
  font: inherit;
  font-size: 16px;
  padding: 0 16px;
}
.lead-form input::placeholder { color: rgba(237, 241, 247, 0.55); }
.lead-form input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.lead-form .btn { box-shadow: none; }
.form-note { font-size: 15px; color: var(--on-navy-dim); margin-bottom: 30px; }
.form-note.ok { color: #7BD8B0; font-weight: 700; }
.form-note.err { color: #F2B8B5; font-weight: 700; }
@media (max-width: 760px) { .lead-form { grid-template-columns: 1fr; } }
.final-founder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--on-navy-dim);
}
.final-founder img { width: 42px; height: 42px; border-radius: 50%; }
.final-founder b { color: var(--on-navy); }

/* ── Footer ── */
.footer { background: #091422; color: rgba(237, 241, 247, 0.6); padding: 40px 24px; }
.footer-in {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14.5px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-weight: 700; color: rgba(237, 241, 247, 0.8); min-height: 48px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: #fff; }

/* ── Work page ── */
.work-hero { padding: 84px 24px 64px; text-align: center; }
.work-hero h1 { max-width: 880px; margin: 0 auto 18px; }
.work-hero .sub { margin: 0 auto; }
.works { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.work:hover { box-shadow: var(--shadow); }
.work img { width: 100%; height: auto; }
.work-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.work-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.work-tags span {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}
.work-body p { font-size: 16px; line-height: 1.55; flex: 1; }
.work-body .link { margin-top: 8px; }
.wide-fig { max-width: 1080px; margin: 40px auto 0; }
.wide-fig img { border-radius: var(--r-card); width: 100%; height: auto; }
.wide-fig figcaption { font-size: 15px; color: var(--muted); margin-top: 12px; text-align: center; }
@media (max-width: 900px) { .works { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .section { padding: 72px 20px; }
  .section.dark { padding-top: calc(72px + var(--cut)); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
