/* ==========================================================================
   Hammam Sables d’Or — Components

   The signature gesture is .ht-steam — headings resolve out of blur, word by
   word, like text read through clearing steam. It is the one bold move on the
   site; everything else stays quiet on purpose.
   ========================================================================== */

/* ---- Signature: the steam reveal ------------------------------------------
   JS splits [data-steam] headings into word spans and adds .ht-steam. If JS
   never runs, no spans exist and the heading renders as plain text — the
   effect is additive, never load-bearing.
   -------------------------------------------------------------------------- */

.ht-steam__w {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(0.16em);
  transition: opacity var(--ht-dur-slow) var(--ht-ease),
    filter var(--ht-dur-slow) var(--ht-ease),
    transform var(--ht-dur-slow) var(--ht-ease);
  transition-delay: calc(var(--i, 0) * 85ms);
  will-change: filter, opacity;
}

.ht-steam.is-in .ht-steam__w {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ---- Generic reveal -------------------------------------------------------
   Gated behind .js so content is never hidden when scripting is unavailable.
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity var(--ht-dur) var(--ht-ease),
    transform var(--ht-dur) var(--ht-ease);
  transition-delay: var(--d, 0ms);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Brass hairline that draws itself in. */
.ht-rule {
  height: 1px;
  border: 0;
  background: var(--ht-line-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ht-dur-slow) var(--ht-ease);
}

.ht-rule.is-in,
html:not(.js) .ht-rule {
  transform: scaleX(1);
}

/* ---- Buttons -------------------------------------------------------------- */

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--ht-radius);
  font-family: var(--ht-font-body);
  font-size: var(--ht-t-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--ht-dur-fast) var(--ht-ease),
    color var(--ht-dur-fast) var(--ht-ease),
    border-color var(--ht-dur-fast) var(--ht-ease);
}

.ht-btn--primary {
  background: var(--ht-brass);
  border-color: var(--ht-brass);
  color: var(--ht-ground-deep);
}

.ht-btn--primary:hover {
  background: var(--ht-brass-lift);
  border-color: var(--ht-brass-lift);
  color: var(--ht-ground-deep);
}

.ht-btn--ghost {
  background: transparent;
  border-color: var(--ht-line-brass);
  color: var(--ht-steam);
}

.ht-btn--ghost:hover {
  border-color: var(--ht-brass);
  color: var(--ht-brass);
}

.ht-btn--small {
  padding: 0.7rem 1.35rem;
  font-size: var(--ht-t-xs);
}

/* Text link with a rule that extends on hover. */
.ht-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: var(--ht-t-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ht-brass);
  text-decoration: none;
  width: fit-content;
}

.ht-link__line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: var(--ht-brass);
  transition: width var(--ht-dur-fast) var(--ht-ease);
}

.ht-link:hover {
  color: var(--ht-brass-lift);
}

.ht-link:hover .ht-link__line {
  width: 3.5rem;
}

/* ---- Photography ----------------------------------------------------------
   Grading lives here, not in the files. --pos lets each image be cropped
   individually, which is how the weaker corners of the source photographs
   are kept out of frame.
   -------------------------------------------------------------------------- */

.ht-photo {
  position: relative;
  overflow: hidden;
  background: var(--ht-ground-deep);
  border-radius: var(--ht-radius);
}

/* height: auto, not 100% — the photograph keeps its own proportions and is
   never cut unless a ratio modifier below explicitly asks for it. The previous
   default combined a forced box height with object-fit: cover, so every image
   whose native ratio differed from its slot lost its edges silently. */
.ht-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  filter: var(--ht-photo-filter);
}

.ht-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ht-photo-vignette);
  pointer-events: none;
}

.ht-photo--soft img {
  filter: var(--ht-photo-filter-soft);
}

.ht-photo--warm::after {
  background: var(--ht-photo-warm);
}

/* ---- Ratio modifiers — the only thing here that crops ---------------------
   Use one ONLY where a layout needs a fixed shape (a grid row that must line
   up). Anything a modifier adds beyond the photograph's own ratio is taken off
   its edges, so match the modifier to the source: the retouched set is mostly
   2:3 portrait, for which --portrait is a no-op and --square or --wide would
   cut roughly a third of the frame away.
   -------------------------------------------------------------------------- */

.ht-photo--tall,
.ht-photo--portrait,
.ht-photo--wide,
.ht-photo--square {
  /* A forced ratio only holds if the image fills the box. */
  height: auto;
}

.ht-photo--tall img,
.ht-photo--portrait img,
.ht-photo--wide img,
.ht-photo--square img {
  height: 100%;
}

.ht-photo--tall {
  aspect-ratio: 3 / 4;
}
.ht-photo--portrait {
  aspect-ratio: 2 / 3;
}
.ht-photo--wide {
  aspect-ratio: 16 / 10;
}
.ht-photo--square {
  aspect-ratio: 1 / 1;
}

.ht-photo__caption {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: var(--ht-s-3);
  font-size: var(--ht-t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ht-steam);
  z-index: 1;
}

/* ---- Ritual steps ---------------------------------------------------------
   The eyebrow is a duration, not a number. The sequence is real — you cannot
   apply rhassoul before you have sweated — but what a reader actually needs
   to know is how long each stage lasts, and that the total is the thing
   being sold: hours.
   -------------------------------------------------------------------------- */

.ht-steps {
  display: flex;
  flex-direction: column;
}

.ht-step {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: var(--ht-s-2) var(--ht-s-5);
  padding-block: var(--ht-s-5);
  border-block-start: 1px solid var(--ht-line);
  align-items: start;
}

.ht-step:last-child {
  border-block-end: 1px solid var(--ht-line);
}

.ht-step__time {
  font-family: var(--ht-font-body);
  font-size: var(--ht-t-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ht-brass);
  padding-block-start: 0.55em;
  white-space: nowrap;
}

.ht-step__body {
  display: flex;
  flex-direction: column;
  gap: var(--ht-s-2);
}

.ht-step__title {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-lg);
  line-height: var(--ht-lh-snug);
}

.ht-step__text {
  color: var(--ht-muted);
  max-width: var(--ht-measure);
}

/* ---- Formula rows (pricing) -----------------------------------------------
   Duration is set larger than price. What is being bought is time.
   -------------------------------------------------------------------------- */

.ht-formulas {
  display: flex;
  flex-direction: column;
}

.ht-formula {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr auto;
  gap: var(--ht-s-3) var(--ht-s-5);
  align-items: center;
  padding-block: var(--ht-s-5);
  border-block-start: 1px solid var(--ht-line);
}

.ht-formula:last-child {
  border-block-end: 1px solid var(--ht-line);
}

.ht-formula__duration {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-xl);
  line-height: 1;
  color: var(--ht-steam);
}

.ht-formula__unit {
  display: block;
  font-family: var(--ht-font-body);
  font-size: var(--ht-t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ht-muted);
  margin-block-start: 0.7em;
}

.ht-formula__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ht-formula__name {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-md);
  color: var(--ht-brass);
  letter-spacing: 0.04em;
}

.ht-formula__text {
  color: var(--ht-muted);
  font-size: var(--ht-t-sm);
  max-width: 52ch;
}

.ht-formula__price {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-lg);
  color: var(--ht-steam);
  white-space: nowrap;
  text-align: end;
}

.ht-formula__per {
  display: block;
  font-family: var(--ht-font-body);
  font-size: var(--ht-t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ht-muted);
  margin-block-start: 0.5em;
}

/* ---- Options list (add-ons) ----------------------------------------------- */

.ht-options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ht-option {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--ht-s-2);
  padding-block: var(--ht-s-3);
  border-block-start: 1px solid var(--ht-line);
}

.ht-option:last-child {
  border-block-end: 1px solid var(--ht-line);
}

.ht-option__name {
  font-size: var(--ht-t-base);
  color: var(--ht-steam);
}

.ht-option__dots {
  flex: 1 1 3rem;
  height: 1px;
  min-width: 2rem;
  background: repeating-linear-gradient(
    90deg,
    var(--ht-line) 0 2px,
    transparent 2px 6px
  );
  transform: translateY(-0.28em);
}

.ht-option__price {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-md);
  color: var(--ht-brass);
  white-space: nowrap;
}

.ht-option__note {
  flex-basis: 100%;
  font-size: var(--ht-t-sm);
  color: var(--ht-muted);
}

/* ---- Space cards ----------------------------------------------------------
   Deliberately unequal: the staggered offset keeps the grid from reading as
   three identical boxes, which is what makes a card row feel templated.
   -------------------------------------------------------------------------- */

.ht-spaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ht-s-5);
  align-items: start;
}

.ht-space {
  display: flex;
  flex-direction: column;
  gap: var(--ht-s-3);
  text-decoration: none;
  color: inherit;
}

.ht-space:nth-child(2) {
  margin-block-start: var(--ht-s-7);
}

.ht-space:nth-child(3) {
  margin-block-start: var(--ht-s-3);
}

.ht-space__photo {
  overflow: hidden;
}

.ht-space__photo img {
  transition: transform var(--ht-dur-slow) var(--ht-ease);
}

.ht-space:hover .ht-space__photo img {
  transform: scale(1.045);
}

.ht-space__name {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-lg);
  color: var(--ht-steam);
}

.ht-space:hover .ht-space__name {
  color: var(--ht-brass);
}

.ht-space__text {
  font-size: var(--ht-t-sm);
  color: var(--ht-muted);
}

/* ---- Alternating editorial bands ------------------------------------------ */

.ht-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.ht-band--reverse .ht-band__media {
  order: 2;
}

.ht-band__body {
  display: flex;
  flex-direction: column;
  gap: var(--ht-s-3);
  max-width: var(--ht-measure);
}

/* ---- Claim list (hairline separated, no icons, no boxes) ------------------- */

.ht-claims {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ht-claim {
  padding-block: var(--ht-s-3);
  border-block-start: 1px solid var(--ht-line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ht-claim:last-child {
  border-block-end: 1px solid var(--ht-line);
}

.ht-claim__title {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-md);
  color: var(--ht-steam);
}

.ht-claim__text {
  font-size: var(--ht-t-sm);
  color: var(--ht-muted);
}

/* ---- Accordion — native <details>, accessible without JS ------------------- */

.ht-acc {
  border-block-start: 1px solid var(--ht-line);
}

.ht-acc:last-of-type {
  border-block-end: 1px solid var(--ht-line);
}

.ht-acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ht-s-3);
  padding-block: var(--ht-s-3);
  cursor: pointer;
  list-style: none;
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-md);
  color: var(--ht-steam);
  transition: color var(--ht-dur-fast) var(--ht-ease);
}

.ht-acc__q::-webkit-details-marker {
  display: none;
}

.ht-acc__q:hover {
  color: var(--ht-brass);
}

/* Plus sign built from two rules; the vertical one retracts when open. */
.ht-acc__sign {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
}

.ht-acc__sign::before,
.ht-acc__sign::after {
  content: "";
  position: absolute;
  background: var(--ht-brass);
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  transition: transform var(--ht-dur-fast) var(--ht-ease);
}

.ht-acc__sign::after {
  transform: rotate(90deg);
}

.ht-acc[open] .ht-acc__sign::after {
  transform: rotate(0deg);
}

.ht-acc__a {
  padding-block-end: var(--ht-s-4);
  color: var(--ht-muted);
  max-width: var(--ht-measure);
}

/* ---- Booking band --------------------------------------------------------- */

.ht-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ht-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.ht-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  filter: saturate(0.3) contrast(1.06) brightness(0.56) sepia(0.26);
}

.ht-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(11 10 8 / 0.74) 0%,
    rgb(11 10 8 / 0.5) 50%,
    rgb(11 10 8 / 0.8) 100%
  );
}

.ht-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--ht-s-3);
  padding-block: var(--ht-section);
}

.ht-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ht-s-2);
  justify-content: center;
  margin-block-start: var(--ht-s-2);
}

/* ---- Booking dialog — the single Amelia swap point ------------------------- */

.ht-dialog {
  width: min(560px, calc(100vw - 2rem));
  max-height: min(84vh, 720px);
  padding: 0;
  border: 1px solid var(--ht-line-brass);
  border-radius: var(--ht-radius);
  background: var(--ht-surface);
  color: var(--ht-steam);
  overflow: auto;
  margin: auto;
}

.ht-dialog::backdrop {
  background: rgb(6 5 4 / 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ht-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--ht-s-3);
  padding: var(--ht-s-4) var(--ht-s-4) var(--ht-s-3);
  border-block-end: 1px solid var(--ht-line);
}

.ht-dialog__title {
  font-family: var(--ht-font-display);
  font-size: var(--ht-t-lg);
  line-height: var(--ht-lh-snug);
}

.ht-dialog__close {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--ht-muted);
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--ht-dur-fast) var(--ht-ease);
}

.ht-dialog__close:hover {
  color: var(--ht-brass);
}

.ht-dialog__body {
  padding: var(--ht-s-4);
  display: flex;
  flex-direction: column;
  gap: var(--ht-s-3);
}

.ht-dialog__channels {
  display: flex;
  flex-direction: column;
  gap: var(--ht-s-2);
}

.ht-dialog__note {
  font-size: var(--ht-t-sm);
  color: var(--ht-muted);
}

/* ---- Info list (contact, hours) ------------------------------------------- */

.ht-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--ht-s-2) var(--ht-s-4);
  margin: 0;
}

.ht-info dt {
  font-size: var(--ht-t-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ht-brass);
  padding-block-start: 0.35em;
  white-space: nowrap;
}

.ht-info dd {
  margin: 0;
  color: var(--ht-steam);
}

/* ---- Map consent placeholder (RGPD) --------------------------------------- */

.ht-map {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ht-surface);
  border: 1px solid var(--ht-line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ht-map__consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ht-s-3);
  text-align: center;
  padding: var(--ht-s-4);
  max-width: 46ch;
}

.ht-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Notice (placeholder-content warning) --------------------------------- */

.ht-notice {
  border: 1px dashed var(--ht-line-brass);
  border-radius: var(--ht-radius);
  padding: var(--ht-s-3) var(--ht-s-4);
  font-size: var(--ht-t-sm);
  color: var(--ht-muted);
  background: rgb(201 162 39 / 0.04);
}

/* ---- Responsive ----------------------------------------------------------- */

@media (max-width: 900px) {
  .ht-spaces {
    grid-template-columns: 1fr 1fr;
  }

  .ht-space:nth-child(2),
  .ht-space:nth-child(3) {
    margin-block-start: 0;
  }

  .ht-band {
    grid-template-columns: 1fr;
  }

  .ht-band--reverse .ht-band__media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .ht-spaces {
    grid-template-columns: 1fr;
  }

  .ht-step {
    grid-template-columns: 1fr;
    gap: var(--ht-s-2);
  }

  .ht-step__time {
    padding-block-start: 0;
  }

  .ht-formula {
    grid-template-columns: 1fr auto;
    align-items: baseline;
  }

  .ht-formula__body {
    grid-column: 1 / -1;
  }

  .ht-info {
    grid-template-columns: 1fr;
    gap: var(--ht-s-1) 0;
  }

  .ht-info dd {
    margin-block-end: var(--ht-s-2);
  }

  .ht-cta__actions {
    width: 100%;
  }

  .ht-cta__actions .ht-btn {
    flex: 1 1 100%;
  }
}

/* ---- Floating WhatsApp CTA ------------------------------------------------
   A persistent channel to the hammam, not a chat widget. It borrows the whole
   of .ht-btn--ghost's language — dark ground, hairline brass border, uppercase
   micro-type — and inverts to .ht-btn--primary's brass on hover, so it reads as
   the same family of button as everything else on the site rather than a
   third-party bolt-on.

   The one deliberate departure is --wa-radius. Every other corner on this site
   is --ht-radius (2px, "stone is cut, not moulded"); a floating action is
   conventionally a pill, and that was the brief. It is a single value here so
   the decision can be reversed in one place.
   -------------------------------------------------------------------------- */

.ht-wa {
  --wa-offset: 1.875rem; /* 30px — desktop */
  --wa-radius: 999px;

  position: fixed;
  z-index: var(--ht-z-float);
  inset-block-end: var(--wa-offset);
  inset-inline-end: var(--wa-offset);

  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.95rem 1.6rem;

  background: var(--ht-ground);
  border: 1px solid var(--ht-line-brass);
  border-radius: var(--wa-radius);
  color: var(--ht-steam);

  font-family: var(--ht-font-body);
  font-size: var(--ht-t-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;

  /* Restrained: enough to lift it off a photograph, not a drop-shadow halo. */
  box-shadow: 0 0.5rem 1.75rem rgb(0 0 0 / 0.42);

  transition: background var(--ht-dur-fast) var(--ht-ease),
    border-color var(--ht-dur-fast) var(--ht-ease),
    color var(--ht-dur-fast) var(--ht-ease),
    opacity var(--ht-dur-fast) var(--ht-ease),
    transform var(--ht-dur-fast) var(--ht-ease),
    visibility var(--ht-dur-fast) var(--ht-ease);

  /* One entrance, once, after the hero has had the screen to itself.
     `backwards` holds it at opacity 0 through the delay. */
  animation: ht-wa-in var(--ht-dur) var(--ht-ease) 1.1s backwards;
}

/* Set by js/whatsapp.js when the footer or a consent control reaches the
   corner the button occupies. visibility (not just opacity) so it also leaves
   the tab order while it is out of the way. */
.ht-wa.is-tucked {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  pointer-events: none;
}

.ht-wa__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ht-brass);
  transition: color var(--ht-dur-fast) var(--ht-ease);
}

/* Brass fill on hover, matching .ht-btn--primary. Ground-deep on brass is
   ~11:1, so the label stays well clear of AA at this size. */
.ht-wa:hover {
  background: var(--ht-brass);
  border-color: var(--ht-brass);
  color: var(--ht-ground-deep);
}

.ht-wa:hover .ht-wa__icon {
  color: var(--ht-ground-deep);
}

/* The global :focus-visible ring is an outline with a 3px offset, so it draws
   outside the pill and needs no help — but the shadow would otherwise sit on
   top of it. */
.ht-wa:focus-visible {
  box-shadow: none;
}

@keyframes ht-wa-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Compact circle on phones: the label is dropped, and aria-label carries the
   accessible name either way. */
@media (max-width: 640px) {
  .ht-wa {
    --wa-offset: 1.1875rem; /* 19px */
    width: 3.5rem; /* 56px */
    height: 3.5rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .ht-wa__label {
    display: none;
  }

  .ht-wa__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ---- Reduced motion -------------------------------------------------------
   Everything resolves to its final state. Nothing is left invisible.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* The global reset below neutralises animation-duration but not
     animation-delay, which would leave the button invisible for 1.1s. */
  .ht-wa {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .ht-steam__w {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ht-rule {
    transform: scaleX(1);
  }
}
