:root {
  --gold: #d4a017;
  --gold-deep: #c58a00;
  --gold-bright: #e8b923;
  --gold-muted: #a88745;
  --gold-soft: rgba(212, 160, 23, 0.16);
  --champagne: #e8d5a3;
  --brown: #2a1a12;
  --brown-soft: #3a2418;
  --ivory: #faf7f0;
  --cream: #f3ebdd;
  --beige: #ede4d4;
  --white: #fffdf8;
  --text: #211a16;
  --muted: #6b5b4f;
  --line: rgba(168, 135, 69, 0.28);
  --shadow: 0 18px 50px rgba(42, 26, 18, 0.08);
  --radius: 18px;
  --header: 120px;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --accent: "Cormorant Garamond", "Playfair Display", serif;
  --sans: Inter, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(232, 185, 35, 0.08), transparent 50%),
    radial-gradient(900px 400px at 100% 0, rgba(42, 26, 18, 0.04), transparent 46%),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.7rem; font-weight: 600; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.sr-only, .hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 80;
  background: var(--brown);
  color: var(--gold-bright);
  padding: 0.6rem 1rem;
}

.skip-link:focus { top: 12px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(760px, calc(100% - 40px)); }

.icon { width: 20px; height: 20px; flex: 0 0 auto; }
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--champagne); }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 38rem; }
.lede.light { color: rgba(250, 247, 240, 0.78); }

.section { padding: 6.5rem 0; }
.section-head { margin-bottom: 2.8rem; max-width: 40rem; }
.section-cta { margin-top: 2.4rem; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--brown); color: var(--gold-bright); }
.btn-dark:hover { background: var(--brown-soft); }
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost, .btn-ghost-light {
  background: transparent;
  border-color: var(--gold);
  color: var(--brown);
}
.btn-ghost-light { color: var(--ivory); border-color: var(--champagne); }
.btn-ivory { background: var(--ivory); color: var(--brown); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.text-link.gold { color: var(--gold-deep); font-weight: 500; }
.text-link .icon { width: 16px; height: 16px; }

.ornament-veil {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath fill='none' stroke='%23D4A017' stroke-width='0.6' d='M110 18c18 28 44 46 74 52-30 6-56 24-74 52-18-28-44-46-74-52 30-6 56-24 74-52z'/%3E%3C/svg%3E");
  background-size: 220px;
}

.site-header, main, .final-cta, .site-footer, .sticky-mobile, .mobile-nav { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid {
  background: rgba(250, 247, 240, 0.96);
  border-bottom-color: var(--gold);
  box-shadow: 0 8px 24px rgba(42, 26, 18, 0.04);
}
.header-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { width: 112px; height: 112px; object-fit: contain; border-radius: 50%; background: #fffdf8; }
.nav-desktop ul { display: flex; gap: 1.15rem; }
.nav-desktop a {
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-desktop a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.header-actions .btn { min-height: 42px; padding: 0.55rem 1rem; }
.menu-toggle, .icon-btn, .wish-btn, .rail-btn {
  border: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  padding: 0.35rem;
}
.menu-toggle { display: none; }
.icon-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(250, 247, 240, 0.94);
  color: var(--brown);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.icon-chip .icon { width: 16px; height: 16px; }
.header-wish { position: relative; text-decoration: none; }
.header-wish span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--brown);
  color: var(--gold-bright);
  font-size: 0.65rem;
  display: grid;
  place-items: center;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(42, 26, 18, 0.38);
}
.mobile-nav-panel {
  margin-left: auto;
  width: min(360px, 100%);
  height: 100%;
  background: var(--ivory);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: -20px 0 50px rgba(42, 26, 18, 0.15);
}
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav nav a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.25rem; }
.mobile-nav-ctas { display: grid; gap: 0.7rem; }

.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid, .gold-loan-grid, .jewellers-grid, .about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 16ch; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin-top: 1.8rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.92rem; }
.hero-trust .icon { color: var(--gold-deep); width: 16px; height: 16px; }
.hero-visual { position: relative; }
.hero-frame, .media-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
}
.hero-frame { padding: 10px; background:
  linear-gradient(var(--ivory), var(--ivory)) padding-box,
  linear-gradient(135deg, var(--gold-bright), transparent 40%, var(--gold-deep)) border-box;
  border: 1px solid transparent;
}
.hero-frame img, .media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.dark-frame { border-color: rgba(232, 213, 163, 0.28); }
.float-gold {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 8px rgba(212, 160, 23, 0.08);
}
.float-a { top: -18px; right: 12%; animation: floaty 7s ease-in-out infinite; }
.float-b { bottom: 18px; left: -16px; width: 46px; height: 46px; animation: floaty 6s ease-in-out infinite reverse; }
.hero-ornament {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.22;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%23C58A00' stroke-width='1.1' d='M100 10c24 34 58 56 90 64-32 8-66 30-90 64-24-34-58-56-90-64 32-8 66-30 90-64z'/%3E%3Ccircle cx='100' cy='100' r='26' fill='none' stroke='%23D4A017'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-ornament-left { left: -40px; top: 40px; }
.hero-ornament-right { right: -30px; bottom: 20px; }

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 1.3rem 0;
}
.trust-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 0.6rem; text-align: left; }
.trust-item .icon { color: var(--gold-deep); }
.trust-item p { margin: 0; font-size: 0.92rem; font-weight: 500; }

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.category-card, .product-card, .solution-card, .why-card, .testimonial-card, .contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(42, 26, 18, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover, .product-card:hover, .solution-card:hover, .why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.card-media { position: relative; overflow: hidden; }
.card-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transform: scale(1.08); transition: transform 0.7s ease; }
.category-card:hover img, .product-card:hover img { transform: scale(1.14); }
.card-body { padding: 1.05rem 1.1rem 1.2rem; }
.card-body h3, .card-body h2 { font-size: 1.15rem; }
.card-body p { color: var(--muted); font-size: 0.92rem; }

.product-rail, .testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
  scrollbar-color: var(--gold) transparent;
}
.product-card, .testimonial-card { scroll-snap-align: start; }
.product-card .card-media img { aspect-ratio: 1; }
.meta { color: var(--gold-muted); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.price { font-family: var(--accent); font-size: 1.2rem; color: var(--brown); }
.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.92);
  color: var(--brown);
}
.wish-btn.is-on { color: var(--gold-deep); }

.gold-loan { background: linear-gradient(180deg, transparent, var(--cream) 18%, var(--cream)); }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.6rem 0 1.4rem; }
.mini-cards article {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.mini-cards h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.mini-cards p, .feature-pills p, .solution-card p, .why-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.mini-cards .icon { color: var(--gold-deep); margin-bottom: 0.45rem; }
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin: 0 0 1rem; }
.process-row li {
  padding: 0.85rem 0.7rem;
  border-top: 1px solid var(--gold);
  background: rgba(255, 253, 248, 0.7);
}
.process-row span { display: block; color: var(--gold-muted); font-size: 0.75rem; letter-spacing: 0.12em; }
.fine-print { font-size: 0.82rem; color: var(--muted); }

.dark-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 185, 35, 0.12), transparent 28%),
    var(--brown);
  color: var(--ivory);
}
.feature-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.6rem 0 1.8rem; }
.feature-pills article {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(232, 213, 163, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.03);
}
.feature-pills h3 { color: var(--gold-bright); font-size: 1.05rem; }

.solution-grid, .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.solution-card, .why-card { padding: 1.3rem 1.2rem 1.4rem; }
.solution-card .icon, .why-icon { color: var(--gold-deep); margin-bottom: 0.8rem; }
.why-card {
  position: relative;
}
.why-card::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 1px;
  background: var(--line);
}
.timeline li { position: relative; padding-top: 0.2rem; }
.step-no {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--serif);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-story { display: grid; gap: 1rem; margin: 1.4rem 0; }
.about-story article { padding-left: 1rem; border-left: 1px solid var(--gold); }
.about-story h3 { font-size: 1rem; color: var(--gold-deep); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0 0 1.6rem; }
.stats dt { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-deep); }
.stats dd { margin: 0; color: var(--muted); font-size: 0.88rem; }

.testimonial-wrap { position: relative; }
.testimonial-card { padding: 1.4rem; min-width: 280px; }
.testimonial-top { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.8rem; }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-deep);
  font-family: var(--serif);
}
.stars { display: flex; gap: 0.15rem; color: var(--gold); margin-bottom: 0.6rem; }
.stars .icon { width: 15px; height: 15px; fill: currentColor; }
.rail-btn {
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
}
.rail-btn.prev { left: -12px; }
.rail-btn.next { right: -12px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  cursor: pointer;
}
.faq-item button[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq-item .icon { transition: transform 0.25s ease; color: var(--gold-deep); }
.faq-panel { padding: 0 0 1.1rem; color: var(--muted); }

.contact { background: var(--cream); }
.contact-details { display: grid; gap: 1rem; margin: 1.6rem 0; }
.contact-details li { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-details .icon { color: var(--gold-deep); margin-top: 0.2rem; }
.contact-details strong { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-muted); }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}
.map-wrap iframe { width: 100%; height: 220px; border: 0; }
.contact-form-wrap { padding: 1.6rem; }
.enquiry-form { display: grid; gap: 0.95rem; }
.field label { display: block; margin-bottom: 0.35rem; font-size: 0.86rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(212, 160, 23, 0.35);
  border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-status { min-height: 1.4em; font-size: 0.92rem; color: var(--gold-deep); }
.field.error input, .field.error select, .field.error textarea { border-color: #8a3b2a; }

.final-cta {
  background: var(--brown);
  color: var(--ivory);
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 16ch; margin-inline: auto; }
.final-cta .lede { margin-inline: auto; }
.final-cta .btn-row { justify-content: center; margin-top: 1.6rem; }
.final-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%23E8B923' stroke-width='0.8' d='M90 12c16 24 40 40 66 46-26 6-50 22-66 46-16-24-40-40-66-46 26-6 50-22 66-46z'/%3E%3C/svg%3E");
}

.site-footer { background: #21150f; color: rgba(250, 247, 240, 0.82); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand img { width: 92px; height: 92px; margin-bottom: 0.8rem; object-fit: contain; border-radius: 50%; background: #fffdf8; }
.site-footer h3 { color: var(--gold-bright); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; }
.footer-contact .icon { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(232, 185, 35, 0.16); padding: 1rem 0 1.5rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.legal-links, .social-links, .footer-bottom-inner ul { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 185, 35, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.page-hero { padding: 4.5rem 0 1rem; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); }

.sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 240, 0.94);
  border-top: 1px solid var(--gold);
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}
.fab-whatsapp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #128c4a;
  color: white;
}

.reveal { animation: rise 0.7s ease; }
@keyframes rise {
  from { transform: translateY(14px); }
  to { transform: none; }
}
@keyframes floaty {
  50% { transform: translateY(-8px); }
}

@media (max-width: 1280px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
  .nav-desktop, .header-actions .text-link, .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn-dark { display: none; }
  .category-grid, .solution-grid, .why-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .gold-loan-grid, .jewellers-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { max-width: none; }
}

@media (max-width: 768px) {
  :root { --header: 72px; }
  .brand img { width: 58px; height: 58px; }
  .section { padding: 4.2rem 0; }
  .trust-row, .category-grid, .mini-cards, .process-row, .feature-pills, .solution-grid, .why-grid, .timeline, .stats, .field-row, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before { display: none; }
  .sticky-mobile { display: flex; }
  .footer-bottom { padding-bottom: 5.5rem; }
  .rail-btn { display: none; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .header-actions .btn-gold { display: none; }
  .trust-row, .category-grid, .mini-cards, .process-row, .feature-pills, .solution-grid, .why-grid, .timeline, .stats, .field-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.2rem; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
