:root {
  --ink: #11110f;
  --ink-soft: #24231f;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --gold: #cba85b;
  --gold-light: #ead7a1;
  --olive: #5d6744;
  --terracotta: #9a4735;
  --line: rgba(17, 17, 15, 0.13);
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.13);
  --radius-lg: 30px;
  --radius-md: 18px;
  --content: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  z-index: 9999;
  background: white;
  color: black;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.announcement {
  min-height: 34px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--gold);
  color: #17140d;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 74px;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 800;
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: Georgia, serif; font-size: 1.15rem; }
.brand-text small { margin-top: 4px; font-size: 0.62rem; letter-spacing: 0.19em; text-transform: uppercase; }
.main-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.main-nav a { font-size: 0.87rem; font-weight: 700; }
.main-nav a:hover { color: #9d7828; }
.header-cta {
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.83rem;
  font-weight: 750;
}
.menu-toggle { display: none; }

.hero {
  width: 100%;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  background: var(--ink);
  color: white;
}
.hero-copy {
  padding: clamp(75px, 10vw, 145px) max(36px, calc((100vw - 1180px) / 2)) 80px;
  padding-right: clamp(36px, 6vw, 90px);
  align-self: center;
}
.eyebrow {
  margin: 0 0 17px;
  color: #a88232;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--gold-light); }
.hero h1,
.section-heading h2,
.ritual-copy h2,
.ingredients-content h2,
.conversion-card h2,
.reviews-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 { margin: 0; max-width: 780px; font-size: clamp(3.4rem, 7vw, 7.3rem); }
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.73); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #17140d; box-shadow: 0 12px 30px rgba(203,168,91,.2); }
.button-gold:hover { background: #dfc27c; box-shadow: 0 15px 34px rgba(203,168,91,.3); }
.button-ghost { border-color: rgba(255,255,255,.3); color: white; background: transparent; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: white; }
.hero-proof {
  margin-top: 54px;
  padding-top: 28px;
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 500; color: var(--gold-light); }
.hero-proof span { color: rgba(255,255,255,.55); font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-media { position: relative; min-height: 680px; overflow: hidden; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,15,.18), transparent 35%), linear-gradient(0deg, rgba(17,17,15,.24), transparent 42%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-floating-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  width: min(320px, calc(100% - 48px));
  padding: 21px 22px;
  display: grid;
  gap: 5px;
  background: rgba(18,18,16,.88);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  backdrop-filter: blur(15px);
}
.floating-kicker { color: var(--gold); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }
.hero-floating-card strong { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 500; }
.hero-floating-card a { margin-top: 7px; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 700; }

.trust-strip {
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div { padding: 0 34px; display: flex; gap: 16px; align-items: center; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { padding-left: 0; }
.trust-strip > div:last-child { border-right: 0; }
.trust-icon { color: #a88232; font-family: Georgia, serif; font-style: italic; font-size: 1.3rem; }
.trust-strip p { margin: 0; color: #6e6a60; font-size: .83rem; line-height: 1.45; }
.trust-strip strong { color: var(--ink); font-size: .93rem; }

.results-section, .products-section, .conversion-section { width: var(--content); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 710px; margin-bottom: 58px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .ritual-copy h2, .ingredients-content h2, .conversion-card h2, .reviews-heading h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5.2rem); }
.section-heading p:last-child { max-width: 660px; margin: 22px 0 0; color: #706c63; font-size: 1rem; }
.section-heading.centered p:last-child { margin-left: auto; margin-right: auto; }
.results-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 7vw, 90px); align-items: stretch; }
.results-image { position: relative; min-height: 610px; overflow: hidden; border-radius: var(--radius-lg); background: #f4f1ea; box-shadow: var(--shadow); }
.results-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--ink);
  color: white;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: .71rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  line-height: 1.25;
}
.image-badge b { color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; font-style: italic; text-transform: lowercase; }
.results-cards { display: grid; align-content: center; }
.result-card { padding: 26px 0; display: grid; grid-template-columns: 60px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.result-card:first-child { border-top: 1px solid var(--line); }
.result-number { color: #a88232; font-family: Georgia, serif; font-size: 1.4rem; font-style: italic; }
.result-card h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 1.42rem; font-weight: 500; }
.result-card p { margin: 0; color: #726e64; font-size: .91rem; }
.proof-note {
  margin-top: 42px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #f1ebdc;
  border: 1px solid rgba(168,130,50,.2);
  border-radius: 14px;
  color: #5e5749;
  font-size: .84rem;
}
.proof-note span { color: #a88232; }
.proof-note p { margin: 0; }

.products-section { padding-top: 80px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.product-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(17,17,15,.06); }
.product-image-wrap { position: relative; height: 500px; overflow: hidden; }
.product-image-wrap.warm { background: #e9dfcf; }
.product-image-wrap.cool { background: #eff1ed; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.product-step {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(17,17,15,.86);
  color: var(--gold-light);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-content { padding: 30px; }
.product-type { margin: 0 0 7px; color: #9a792e; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-content h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.product-description { min-height: 52px; margin: 14px 0 20px; color: #6f6b62; font-size: .92rem; }
.benefit-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.benefit-list li { position: relative; padding-left: 22px; font-size: .87rem; }
.benefit-list li::before { content: "✦"; position: absolute; left: 0; color: #a88232; }
.product-buy-row { margin-top: 28px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); }
.product-buy-row > div { display: grid; }
.price-label { color: #888278; font-size: .67rem; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.product-buy-row strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.product-buy-row .button { min-height: 45px; padding: 0 18px; }
.bundle-card {
  margin-top: 26px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
}
.bundle-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; }
.bundle-card p:last-child { max-width: 650px; margin: 12px 0 0; color: rgba(255,255,255,.62); }
.bundle-actions { display: grid; justify-items: end; gap: 13px; min-width: 245px; }
.bundle-actions span { color: var(--gold-light); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 750; }

.ritual-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.ritual-media { min-height: 760px; }
.ritual-media img { width: 100%; height: 100%; object-fit: cover; }
.ritual-copy { padding: clamp(70px, 8vw, 130px) clamp(36px, 8vw, 120px); align-self: center; }
.ritual-copy h2 { max-width: 650px; }
.ritual-steps { margin-top: 42px; display: grid; }
.ritual-steps article { padding: 20px 0; display: grid; grid-template-columns: 46px 1fr; gap: 17px; border-bottom: 1px solid var(--line); }
.ritual-steps article:first-child { border-top: 1px solid var(--line); }
.ritual-steps span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #b89a57; border-radius: 50%; color: #92701f; font-family: Georgia, serif; }
.ritual-steps h3 { margin: 0 0 3px; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.ritual-steps p { margin: 0; color: #746f65; font-size: .87rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 28px; color: #86651d; font-weight: 800; font-size: .87rem; }

.ingredients-section {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("assets/botanical-wide.webp") center/cover no-repeat;
  color: white;
}
.ingredients-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,15,.88), rgba(17,17,15,.48) 58%, rgba(17,17,15,.14)); }
.ingredients-content { position: relative; z-index: 1; width: var(--content); }
.ingredients-content > * { max-width: 660px; }
.ingredients-content p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255,255,255,.72); font-size: 1rem; }
.ingredient-pills { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.ingredient-pills span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(17,17,15,.2); font-size: .78rem; font-weight: 700; backdrop-filter: blur(10px); }

.conversion-section { padding-top: 100px; padding-bottom: 100px; }
.conversion-card {
  padding: clamp(50px, 8vw, 95px);
  text-align: center;
  background: var(--cream);
  border-radius: 42px;
}
.conversion-card h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.conversion-card > p:not(.eyebrow) { max-width: 650px; margin: 22px auto 30px; color: #716c62; }

.reviews-section { padding: 90px 0 105px; overflow: hidden; background: var(--ink); color: white; }
.reviews-heading { width: var(--content); margin: 0 auto 42px; }
.reviews-heading h2 { max-width: 900px; }
.mock-label { margin: 16px 0 0; color: rgba(255,255,255,.5); font-size: .8rem; }
.review-marquee { overflow: hidden; outline: none; }
.review-marquee:focus-visible { box-shadow: inset 0 0 0 3px var(--gold); }
.review-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.review-marquee:hover .review-track,
.review-marquee:focus .review-track { animation-play-state: paused; }
.review-card {
  width: min(390px, calc(100vw - 44px));
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  background: #20201d;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}
.review-card:first-child { margin-left: 20px; }
.stars { color: var(--gold); letter-spacing: .15em; font-size: .82rem; }
.review-card p { margin: 20px 0; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.45; color: rgba(255,255,255,.88); }
.review-card span { color: rgba(255,255,255,.48); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

.site-footer {
  padding: 60px max(20px, calc((100% - 1180px) / 2)) 110px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 70px;
  background: #0d0d0c;
  color: white;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand strong { font-family: Georgia, serif; font-size: 1.25rem; }
.footer-brand p { margin: 3px 0 0; color: rgba(255,255,255,.45); font-size: .79rem; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; font-size: .78rem; font-weight: 700; }
.footer-disclaimer { grid-column: 1 / -1; max-width: 920px; margin: 10px 0 0; color: rgba(255,255,255,.42); font-size: .72rem; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: .7rem; }

.mobile-buy-bar { display: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 3000;
  max-width: calc(100% - 36px);
  padding: 13px 18px;
  transform: translate(-50%, 140%);
  opacity: 0;
  background: var(--ink);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  font-size: .82rem;
  transition: .35s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .14s; }
.reveal-delay-3 { transition-delay: .20s; }
.reveal-delay-4 { transition-delay: .26s; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 18px; }
  .main-nav {
    position: fixed;
    top: 108px;
    left: 18px;
    right: 18px;
    padding: 18px;
    display: grid;
    gap: 5px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 10px; }
  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); border-radius: 4px; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 84px 30px 70px; }
  .hero-media { min-height: 620px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .results-layout { grid-template-columns: 1fr; }
  .results-image { min-height: 560px; }
  .product-image-wrap { height: 420px; }
  .ritual-section { grid-template-columns: 1fr; }
  .ritual-media { min-height: 560px; }
  .ritual-copy { padding: 80px 30px; }
}

@media (max-width: 740px) {
  :root { --content: min(100% - 28px, 1180px); --radius-lg: 22px; }
  body { padding-bottom: 74px; }
  .announcement { min-height: 30px; font-size: .61rem; gap: 7px; overflow: hidden; white-space: nowrap; }
  .announcement span:nth-of-type(4), .announcement span:nth-of-type(5) { display: none; }
  .site-header { min-height: 67px; padding: 0 15px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text small { font-size: .55rem; }
  .main-nav { top: 106px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3.2rem, 14vw, 5.3rem); }
  .hero-lead { font-size: .98rem; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .hero-proof div { grid-template-columns: 110px 1fr; align-items: center; }
  .hero-media { min-height: 500px; }
  .hero-floating-card { right: 16px; bottom: 16px; }
  .results-section, .products-section, .conversion-section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .ritual-copy h2, .ingredients-content h2, .conversion-card h2, .reviews-heading h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .results-image { min-height: 420px; }
  .result-card { grid-template-columns: 44px 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { height: 390px; }
  .product-content { padding: 24px; }
  .product-buy-row { align-items: flex-end; }
  .product-buy-row .button { max-width: 180px; padding: 0 14px; font-size: .77rem; }
  .bundle-card { padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .bundle-actions { width: 100%; justify-items: stretch; min-width: 0; }
  .bundle-actions .button { width: 100%; }
  .ritual-media { min-height: 470px; }
  .ingredients-section { min-height: 650px; }
  .ingredients-overlay { background: linear-gradient(90deg, rgba(17,17,15,.87), rgba(17,17,15,.63)); }
  .conversion-card { border-radius: 26px; }
  .reviews-section { padding: 72px 0 90px; }
  .site-footer { grid-template-columns: 1fr; padding: 50px 20px 40px; }
  .footer-links { gap: 15px; }
  .footer-disclaimer, .copyright { grid-column: 1; }
  .mobile-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    min-height: 72px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(17,17,15,.96);
    color: white;
    border-top: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
  }
  .mobile-buy-bar > div { display: grid; line-height: 1.3; }
  .mobile-buy-bar small { color: rgba(255,255,255,.48); font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; }
  .mobile-buy-bar strong { font-family: Georgia, serif; font-size: .93rem; }
  .mobile-buy-bar .button { min-height: 43px; padding: 0 17px; font-size: .78rem; }
  .toast { bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .review-track { animation: none; overflow-x: auto; width: auto; }
}
