/* ============================================
   TONBEEN · Brand Website
   Dark, editorial, gold-accented luxury aesthetic
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --bg: #0b0b0d;
  --bg-soft: #131316;
  --bg-elev: #1a1a1f;
  --ink: #f4f1ea;
  --ink-soft: #b8b3a8;
  --ink-mute: #6f6a60;
  --gold: #c9a96a;
  --gold-soft: #d8bd86;
  --line: rgba(244, 241, 234, 0.08);
  --line-strong: rgba(244, 241, 234, 0.16);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-long: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-title--light {
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(201, 169, 106, 0.45);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Announcement Bar ---------- */
.announcement {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  height: 38px;
  display: flex;
  align-items: center;
}

.announcement__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}

.announcement__dot {
  color: var(--gold);
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  top: 0;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo-mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--ink);
}

.nav__menu {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 0;
  padding: 0 var(--gutter);
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease), border-top 0.3s var(--ease);
}

.nav__mobile.open {
  max-height: 400px;
  padding: 16px var(--gutter) 28px;
  border-top: 1px solid var(--line);
}

.nav__mobile-link {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 169, 106, 0.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 169, 106, 0.06), transparent 45%),
    linear-gradient(180deg, #0b0b0d 0%, #131316 60%, #0b0b0d 100%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 169, 106, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.6) 50%, rgba(11, 11, 13, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span,
.hero__title-line {
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-long) forwards;
}

.hero__title-line:nth-child(1) {
  animation-delay: 0.35s;
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.55s;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__sub {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Trust Marquee ---------- */
.trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
  padding: 48px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.trust__item span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ---------- Brand Story ---------- */
.story {
  padding: 140px 0;
  background: var(--bg);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.story__visual {
  position: relative;
}

.story__visual-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1.4s var(--ease);
}

.story__visual-frame:hover img {
  transform: scale(1.05);
}

.story__visual-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.story__visual-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 400;
}

.story__visual-cap {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story__lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}

.story__body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 40px;
}

.story__signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.story__signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}

.story__signature-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Collection ---------- */
.collection {
  padding: 140px 0;
  background: var(--bg-soft);
}

.collection__head {
  max-width: 720px;
  margin-bottom: 80px;
}

.collection__intro {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 540px;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product {
  display: flex;
  flex-direction: column;
}

.product__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-elev);
  margin-bottom: 24px;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
  transition: transform 1s var(--ease), filter 1s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.product__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
}

.product__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.product__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.product__price {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

.product__desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product__link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}

.product__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- Craft ---------- */
.craft {
  background: var(--bg);
}

.craft__feature {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.craft__feature-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/craft-bg.jpg")
      center / cover no-repeat fixed;
  opacity: 0.22;
  filter: grayscale(0.4);
}

.craft__feature-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter);
  width: 100%;
}

.craft__feature-text {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 0;
}

.craft__item {
  background: var(--bg);
  padding: 64px 40px;
}

.craft__item-num {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
}

.craft__item-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}

.craft__item-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mute);
}

/* ---------- Numbers ---------- */
.numbers {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.numbers__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.numbers__suffix {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--gold-soft);
  margin-left: 2px;
}

.numbers__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Global ---------- */
.global {
  padding: 140px 0;
  background: var(--bg);
}

.global__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.global__lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.global__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.global__cities span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.global__cities span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.global__visual-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 56px 48px;
}

.global__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.global__stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
}

.global__stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.global__divider {
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

/* ---------- Journal ---------- */
.journal {
  padding: 140px 0;
  background: var(--bg-soft);
}

.journal__head {
  margin-bottom: 80px;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quote {
  border: 1px solid var(--line);
  padding: 48px 40px;
  background: var(--bg);
  transition: all 0.5s var(--ease);
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 28px;
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.quote p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.quote footer {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.quote:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

/* ---------- Contact ---------- */
.contact {
  padding: 140px 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 169, 106, 0.08), transparent 60%),
    var(--bg);
  text-align: center;
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact__text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__email-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact__email-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact__email {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 14px 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.contact__email:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
}

.footer__tag {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 280px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 13px;
  color: var(--ink-soft);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-long), transform 1s var(--ease-long);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .craft__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 32px;
  }
  .journal__grid {
    grid-template-columns: 1fr;
  }
  .story__grid,
  .global__grid {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 24px;
  }
  .nav__menu {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
  .nav__actions .nav__link--cta {
    display: none;
  }
  .story__grid,
  .global__grid {
    grid-template-columns: 1fr;
  }
  .story__visual-badge {
    right: 16px;
    bottom: -16px;
    padding: 18px 24px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .craft__feature-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .products {
    grid-template-columns: 1fr;
  }
  .craft__grid {
    grid-template-columns: 1fr;
  }
  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .trust {
    gap: 24px;
    padding: 32px var(--gutter);
  }
  .story,
  .collection,
  .global,
  .journal,
  .contact {
    padding: 96px 0;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
