/* ==========================================================================
   MomentRadar — design tokens
   Warm mahogany-and-candlelight world. Muted metals, no gradients, no glow.
   ========================================================================== */

:root {
  --espresso: #0C2318;      /* deep emerald-evergreen base — saturated, regal, never cool black */
  --ivory: #F5EFDE;         /* primary text on dark — bright for strong contrast */
  --gold: #CFA85F;          /* rich antique gold — masthead, kickers, rules, primary CTA */
  --ember: #D2754D;         /* ONE terracotta accent — italic line, one blip, one moment per screen */
  --hairline: #2E4C3A;      /* hairline rules — a step more present */
  --radar-line: #3D5C46;    /* radar line work */
  --muted: #A4BAA4;         /* body/support text — lifted sage for contrast */
  --ivory-room: #F6F1E2;    /* the one lit room (founder note) */
  --ink: #122620;           /* deep emerald ink on ivory */
  --panel: #122A1E;         /* slightly lifted flat panel on dark */

  /* Limewash rooms — warm mineral beige/taupe, deepening as you walk in */
  --room-1: #EAE2D1;
  --room-2: #E7DECB;
  --room-3: #E3D9C4;
  --room-4: #DFD4BD;
  --room-5: #DBCFB6;

  /* Companions for text and rules on limewash */
  --ink-muted: #615E4D;     /* support text on light */
  --gold-deep: #9C7B36;     /* gold legible on limewash */
  --hairline-wash: #CDC1A6; /* hairlines on limewash */
  --paper: #F1EBDC;         /* lifted panel on limewash */

  --font-display: "Fraunces", Georgia, serif;
  --font-masthead: "Playfair Display", Georgia, serif;
  --font-editorial: "Cormorant", Garamond, Georgia, serif;
  --font-ui: "Archivo", -apple-system, Helvetica, Arial, sans-serif;

  --tracking-kicker: 0.24em;
  --container: 1120px;
  --container-narrow: 760px;
}

/* ==========================================================================
   Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Texture lives in the limewash backgrounds only — nothing films over content */

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  z-index: 10;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Room directory — a sliver at the top edge, revealed on approach
   ========================================================================== */

.roomnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.roomnav__bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.75rem;
  background: #0C2318;
  border-bottom: 1px solid var(--hairline);
  padding: 0 1.5rem;
  min-height: 4.5rem; /* matches the masthead, so the hairlines align when open */
  transform: translateY(calc(-100% + 5px));
  transition: transform 0.35s ease;
}

.roomnav:hover .roomnav__bar,
.roomnav:focus-within .roomnav__bar,
.roomnav--show .roomnav__bar {
  transform: translateY(0);
}

.roomnav__bar a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

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

.roomnav__cta { color: var(--gold) !important; }

/* Anchored rooms land clear of the bar */
section[id] { scroll-margin-top: 3rem; }

@media (max-width: 760px) {
  .roomnav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .roomnav__bar { transition: none; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

.gold { color: var(--gold); }
.ember { color: var(--ember); font-style: italic; }

/* ==========================================================================
   The static world — fixed radar backdrop the page scrolls over
   ========================================================================== */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.68;
}

.backdrop .radar {
  width: min(135vmin, 1100px);
  height: auto;
  display: block;
}


/* Each moment is set like a stone: a still engraved halo, a slow ember glow */
.blip-ring { opacity: 0.4; }

.blip-dot {
  opacity: 0.5;
  animation: blip-glow 9s ease-in-out infinite;
}
.radar__blip--1 .blip-dot { animation-delay: 0s; }
.radar__blip--2 .blip-dot { animation-delay: 3s; }
.radar__blip--3 .blip-dot { animation-delay: 6s; }

@keyframes blip-glow {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blip-ring { opacity: 0.4; }
  .blip-dot { animation: none; opacity: 1; }
}

/* ==========================================================================
   Type
   ========================================================================== */

.kicker {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.kicker--ink { color: var(--gold); }

/* A short gold rule above each kicker — quiet editorial gold presence */
.kicker::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.1rem;
}
.hero .kicker::before,
.section--close .kicker::before {
  margin-left: auto;
  margin-right: auto;
}

.section__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin-bottom: 1.75rem;
}

.section__lede {
  color: var(--muted);
  max-width: 36em;
  margin-bottom: 2.5rem;
}

.prose p + p { margin-top: 1.35em; }
.prose { color: var(--ivory); max-width: 38em; }
.prose p { color: var(--muted); }
.prose p:first-child { color: var(--ivory); }

/* Supporting text reads literary, not techy: Fraunces at text sizes.
   Archivo stays for kickers, labels, buttons — the instrument's engravings. */
.prose p,
.section__lede,
.hero__sub,
.toc__desc,
.framework__line,
.offer__desc,
.calendly-placeholder__note {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
}

/* Editorial drop cap — serif, quietly grand */
.prose--dropcap > p:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.2em;
  line-height: 0.8;
  float: left;
  padding: 0.06em 0.14em 0 0;
  color: var(--gold);
}

/* The host's aside opens each page — italic, lowercase, a murmur */
.script-note {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

/* Pull line: the thesis sentence set apart, with a small gold rule */
.prose .prose__pull {
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--ivory);
  margin-top: 1.7em;
  padding-top: 1.5em;
  position: relative;
}
.prose .prose__pull::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

/* ==========================================================================
   Masthead — luxury magazine structure
   ========================================================================== */

.masthead { border-bottom: 1px solid var(--hairline); }

.masthead__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

/* The wordmark: bold editorial serif — newsstand masthead, Forbes register */
.masthead__wordmark {
  font-family: var(--font-masthead);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
}

/* The Arélo Group line: regal garalde italic with a signature flourish */
.masthead__practice {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--gold);
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

/* The signature gesture: the pen sweeps left under the name, curls,
   and returns. The masthead signs itself once on arrival; the footer
   bears the same mark, already signed. */
.sig-flourish {
  position: absolute;
  left: 0;
  right: -4px;
  bottom: 0;
  width: calc(100% + 4px);
  height: 13px;
}

.sig-flourish path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.sig-flourish--sign path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: flourish-sign 1.5s ease-in-out 0.7s forwards;
}

@keyframes flourish-sign {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sig-flourish--sign path { animation: none; stroke-dashoffset: 0; }
}

/* Letterpress: gold pressed into the dark leather of the masthead */
.masthead__wordmark,
.masthead__practice,
.footer__wordmark,
.footer__practice,
.threshold__line {
  text-shadow: 0 1px 1px rgba(5, 14, 10, 0.65), 0 -1px 0 rgba(245, 239, 222, 0.12);
}

/* ==========================================================================
   Hero — the cover, floating over the static world
   ========================================================================== */

.hero {
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero__inner { max-width: 880px; }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 1.06;
  margin-bottom: 1.9rem;
}

.hero__sub {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 34em;
  margin: 0 auto 2.75rem;
}

/* ==========================================================================
   CTAs — confident brands don't beg for the click
   ========================================================================== */

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.cta-row--center { justify-content: center; }

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
}

.btn--primary {
  background: var(--gold);
  color: var(--espresso);
  /* stamped metal: a hairline of light above, shade below */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn--primary:hover { background: #D9B56E; }

.link-secondary {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-secondary:hover { color: var(--gold); }

/* ==========================================================================
   Rooms — solid panels gliding over the world, deepening as you go
   ========================================================================== */

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--espresso);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* Limewash rooms: light pages gliding over the dark world.
   Remapping the palette vars recolors everything inside each room. */
.room {
  position: relative;
  z-index: 0;
  color: var(--ink);
  --ivory: var(--ink);
  --muted: var(--ink-muted);
  --gold: var(--gold-deep);
  --hairline: var(--hairline-wash);
  --panel: var(--paper);
}

/* Heavier mineral grain on the limewash itself — mottled like real wash */
.room::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.27;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
}

/* A second, larger-scale wash: soft clouds under the grain, like brushed lime */
.room::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='700' height='700'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.011' numOctaves='3' seed='7'/><feColorMatrix type='saturate' values='0'/></filter><rect width='700' height='700' filter='url(%23m)'/></svg>");
}


.room--1 { background: var(--room-1); }
.room--2 { background: var(--room-2); }
.room--3 { background: var(--room-3); }
.room--4 { background: var(--room-4); }
.room--5 { background: var(--room-5); }

.section + .section { border-top: none; }

/* Thresholds: open gaps where the static world shows through */
.threshold {
  min-height: 42vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

/* Quiet variant: no words, just the world showing through */
.threshold--quiet { min-height: 28vh; padding: 0; }

.threshold__inner { text-align: center; }

.threshold__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--gold);
  text-align: center;
}

/* The quiet answer beneath the invitation — ties the poetry to the mission */
.threshold__sub {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The founder note: now the one DARK room — the heart of the club,
   inverted against the limewash pages around it */
.section--ivory {
  background: #0C2318;
  color: var(--ivory);
  border: none;
}
.section--ivory .section__headline { color: var(--ivory); }
.prose--ink p { color: var(--muted); }
.prose--ink p:first-child { color: var(--ivory); }

/* The founder signs in his own hand — Allura, warm script, gold ink */
.prose .prose__signature {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--gold);
  margin-top: 1.6em;
}
.prose__signature-role {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}

.section--close { text-align: center; }
.section--close .section__lede { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Framework — React / Insert / Amplify / Create
   ========================================================================== */

/* A ledger, not a feature grid: full-width rows, folio numerals, hairlines */
.framework {
  margin-top: 1.5rem;
}

.framework__step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  column-gap: 2rem;
  align-items: baseline;
  padding: 2.1rem 0;
  border-top: 1px solid var(--hairline);
}
.framework__step:last-child { border-bottom: 1px solid var(--hairline); }

/* Large folio numerals — Cormorant, like plates in a fine book */
.framework__num {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--gold);
  opacity: 0.6;
}
.framework__num--muted { color: var(--muted); opacity: 0.4; }

.framework__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.framework__line { color: var(--muted); font-size: 1rem; grid-column: 2; margin: 0; }

.framework__note {
  margin-top: 2.5rem;
  color: var(--muted);
  max-width: 38em;
}

@media (min-width: 800px) {
  .framework__step { grid-template-columns: 6.5rem 15rem 1fr; }
  .framework__name { margin: 0; }
  .framework__line { grid-column: 3; grid-row: 1; }
}

/* ==========================================================================
   The deliverable — contents beside the report rendered as an object
   ========================================================================== */

.deliverable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 960px) {
  .deliverable { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
}

.specimen {
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
  align-self: center;
  justify-self: center;
  position: relative;
}

/* A printed cover: gold frame, masthead, contents — the product shot, drawn.
   Stays dark even inside limewash rooms — the object lying on the linen. */
.specimen__card {
  --ivory: #F5EFDE;
  --muted: #A4BAA4;
  --gold: #CFA85F;
  --hairline: #2E4C3A;
  --panel: #122A1E;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 2.4rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}

.specimen__mast {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hairline);
}

.specimen__wordmark {
  font-family: var(--font-masthead);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
}

.specimen__issue {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.specimen__kicker {
  margin-top: 2.2rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--gold);
}

.specimen__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  margin-top: 0.6rem;
  color: var(--ivory);
}

.specimen__for {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.specimen__for em { color: var(--gold); font-style: italic; }

.specimen__toc {
  margin-top: 2.2rem;
  border-top: 1px solid var(--hairline);
}

.specimen__toc li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
}

.specimen__num {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.specimen__foot {
  margin-top: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hangs below the card without weighing on its vertical centering */
.specimen__caption {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 1.4rem;
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ==========================================================================
   Table of contents — the deliverable
   ========================================================================== */

.toc { border-top: 1px solid var(--hairline); }

.toc__item {
  display: flex;
  gap: 1.75rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--hairline);
}

.toc__num {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  min-width: 2.4rem;
  padding-top: 0.05rem;
}

.toc__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.toc__desc { color: var(--muted); font-size: 0.98rem; }

/* ==========================================================================
   Offers & pricing
   ========================================================================== */

/* A tariff, not pricing cards: hairlines and type, like a grand hotel's rates */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .offers { grid-template-columns: 1fr 1fr; }
  .offer + .offer { padding-left: 3rem; }
  .offer:first-child { padding-right: 3rem; border-right: 1px solid var(--hairline); }
}

.offer {
  padding: 2.6rem 0;
  border-top: 1px solid var(--hairline);
}

.offer--featured { border-top-color: var(--gold); }

.offer__kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.offer__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.offer__price {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.offer__per { color: var(--muted); font-size: 1rem; font-family: var(--font-editorial); }

.offer__desc { color: var(--muted); font-size: 1rem; max-width: 30em; }

/* ==========================================================================
   Calendly placeholder
   ========================================================================== */

.calendly-placeholder {
  margin: 3rem auto 0;
  max-width: 480px;
  border: 1px dashed var(--hairline);
  border-radius: 3px;
  padding: 2.5rem 2rem;
}

.calendly-placeholder__label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.calendly-placeholder__note { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

/* Transparent like the masthead — the page closes back into the world */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__wordmark {
  font-family: var(--font-masthead);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.footer__legal { color: var(--muted); font-size: 0.8rem; }

.footer__practice {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

/* ==========================================================================
   Scroll reveal — gliding deeper into the world.
   Only hidden when JS is present; reduced-motion shows everything.
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
