/* ============================================================
   Bond Family Homes — stylesheet
   Palette + type tokens, then layout top-to-bottom.
============================================================ */

:root {
  /* Brand colours (sampled from the logo) */
  --navy:       #143A63;
  --navy-deep:  #0D2945;
  --navy-soft:  #1E4E80;
  --gold:       #C8922E;
  --gold-soft:  #E2B85A;

  /* Surfaces & ink */
  --paper:      #FBFAF7;
  --paper-2:    #F3EFE7;
  --ink:        #16202E;
  --slate:      #54657A;
  --line:       rgba(20, 58, 99, 0.12);

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 26px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 18px 50px -24px rgba(13, 41, 69, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(13, 41, 69, 0.35);
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-soft); color: var(--navy-deep); }

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

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

.section-eyebrow,
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-intro { color: var(--slate); max-width: 56ch; }

.section-head--center {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center .section-intro { margin-inline: auto; }

p + p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -18px rgba(13, 41, 69, 0.6);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--navy-deep);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  background: rgba(20, 58, 99, 0.04);
}
.btn--block { width: 100%; }

/* ============================================================
   Emblem
============================================================ */
.emblem { width: 100%; height: auto; }
.emblem--sm  { width: 42px; height: 44px; flex: none; }
.emblem--md  { width: 120px; height: 126px; }
.emblem--hero{ width: clamp(220px, 30vw, 320px); height: auto; }

/* ============================================================
   Header
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(13,41,69,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-deep);
  position: relative;
  transition: color .25s var(--ease);
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav a:not(.nav-cta):hover { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  /* Stay above the open menu panel so it works as a close (X) button */
  position: relative;
  z-index: 80;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
/* Soft, warm ambient light — like sun through a window. Drifts gently. */
.hero-glow {
  position: absolute;
  inset: -25% -15% auto auto;
  width: 65vw; height: 65vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle at 70% 30%, rgba(200,146,46,0.20), transparent 62%);
  filter: blur(14px);
  z-index: -2;
  animation: drift 22s var(--ease) infinite alternate;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy, .hero-art { min-width: 0; }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  font-size: clamp(2rem, 1.1rem + 4.4vw, 4.4rem);
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}
.hero-title .accent {
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}
.hero-lead {
  color: var(--slate);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Hero art */
.hero-art { display: grid; place-items: center; }
.hero-emblem-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  transition: transform .2s ease-out;
  transform-style: preserve-3d;
}
.hero-emblem-wrap .emblem--hero {
  position: relative;
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}
/* Warm "welcome light" glow behind the emblem — gently breathes like a hearth/lamp */
.hero-halo {
  position: absolute;
  top: 46%; left: 50%;
  width: 116%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(226,184,90,0.30) 0%,
    rgba(200,146,46,0.12) 42%,
    transparent 68%);
  border-radius: 50%;
  z-index: 0;
  animation: breathe 8s ease-in-out infinite;
}
/* Soft contact shadow that settles as the emblem floats — grounds it, like home */
.hero-emblem-wrap::after {
  content: "";
  position: absolute;
  bottom: 7%; left: 50%;
  width: 44%; height: 16px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(13,41,69,0.22), transparent 72%);
  filter: blur(5px);
  border-radius: 50%;
  z-index: 0;
  animation: shadowpulse 7s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid var(--line);
  border-radius: 14px;
  display: grid;
  justify-items: center;
}
.hero-scroll-dot {
  width: 4px; height: 8px;
  margin-top: 6px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrolldot 1.8s var(--ease) infinite;
}

/* ============================================================
   Stats
============================================================ */
.stats {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding-inline: clamp(0.5rem, 2vw, 1.75rem);
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  height: 92px;
  width: 1px;
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.18) 60%, rgba(255,255,255,0));
  transform: translateY(-50%);
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, rgba(226,184,90,0.20), rgba(255,255,255,0.04));
  border: 1px solid rgba(226,184,90,0.32);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.stat:hover .stat-icon {
  transform: translateY(-4px);
  border-color: rgba(226,184,90,0.6);
}
.stat-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.65rem);
  color: var(--gold-soft);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  max-width: 34ch;
  margin-inline: auto;
}

/* ============================================================
   Story
============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story-media { display: grid; place-items: center; }
.story-card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  background: linear-gradient(160deg, var(--paper-2), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(200,146,46,0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.story-card-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
}
.story-copy p { color: var(--slate); }
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 1.5rem;
}

/* ============================================================
   Promise / value cards
============================================================ */
.promise { background: var(--paper-2); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,146,46,0.4);
}
.value-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  margin-bottom: 1.1rem;
}
.value-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--slate); font-size: 0.96rem; }

/* ============================================================
   Approach / steps
============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.steps { list-style: none; padding: 0; margin-top: 2.5rem; display: grid; gap: 1.75rem; }
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  width: 2.5rem;
}
.steps h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}
.steps p { color: var(--slate); font-size: 0.96rem; }

.approach-aside { position: sticky; top: 100px; }
.cta-card {
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}
.cta-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.cta-card p { color: rgba(255,255,255,0.82); font-size: 0.96rem; margin-bottom: 1.5rem; }
.cta-card .btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.cta-card .btn--primary:hover { background: var(--gold-soft); }
.cta-fine { font-size: 0.82rem !important; opacity: 0.7; margin-top: 1rem; margin-bottom: 0 !important; }

/* ============================================================
   Contact
============================================================ */
.contact { background: var(--paper-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-copy p { color: var(--slate); }
.contact-list { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.85rem; font-weight: 600; }
.contact-ico {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  flex: none;
}
.contact-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a { transition: color .25s var(--ease); }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}
.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--navy-deep); }
.field .opt { font-weight: 500; color: var(--slate); }
.field input, .field textarea {
  font: inherit;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,58,99,0.1);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 0.9rem; font-weight: 600; font-size: 0.92rem; min-height: 1.2em; }
.form-status.is-error { color: #b3261e; }
.form-status.is-ok { color: #1c7a4d; }
.form-fallback { margin-top: 0.75rem; font-size: 0.85rem; color: var(--slate); }
.form-fallback a, .contact-copy a { color: var(--navy); font-weight: 600; }

/* ============================================================
   Footer
============================================================ */
.site-footer { background: var(--navy-deep); color: #fff; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.brand--footer .brand-name { color: #fff; }
.brand--footer .emblem--sm {
  background: var(--paper);
  border-radius: 12px;
  padding: 5px;
  box-sizing: content-box;
  width: 38px; height: 40px;
}
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.8); transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   Scroll-reveal animation
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Keyframes
============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes shadowpulse {
  0%, 100% { transform: translateX(-50%) scale(1);    opacity: 0.5; }
  50%      { transform: translateX(-50%) scale(0.86); opacity: 0.32; }
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6%, 6%) scale(1.1); }
}
@keyframes scrolldot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }

  .story-grid,
  .approach-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .story-media { order: 2; max-width: 420px; margin-inline: auto; }
  .approach-aside { position: static; }

  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem 2.5rem;
    background: var(--paper);
    box-shadow: -20px 0 60px -30px rgba(13,41,69,.6);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 70;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.25rem; }
  .nav-cta { font-size: 1.05rem !important; }
  body.nav-open { overflow: hidden; }
  /* Backdrop must sit BELOW the header's stacking context (z-index 60),
     otherwise it paints over the menu (which lives inside the header)
     and makes it unusable. */
  body.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(13,41,69,0.4);
    z-index: 55;
  }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat + .stat::before { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Reduced motion — respect the user's preference
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
