/* ============================================================
   Flexlife Wellness Centre — styles.css
   Palette: deep eucalyptus green, warm cream, terracotta, amber
   Type:    Fraunces (display) + Nunito Sans (body)
   ============================================================ */

:root {
  --green-900: #0d2f27;
  --green-800: #134034;
  --green-700: #1b5a48;
  --green-600: #24765f;
  --cream: #faf5ec;
  --sand: #f3ebdc;
  --sage: #dfeae3;
  --terracotta: #e2725b;
  --terracotta-dark: #c85a44;
  --amber: #f2a65a;
  --ink: #22332d;
  --ink-soft: #4f635b;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 40px rgba(19, 64, 52, 0.10);
  --shadow-card: 0 6px 24px rgba(19, 64, 52, 0.10);

  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-800);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

p { margin: 0 0 1rem; }
a { color: var(--green-700); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-dark); }
img, svg, iframe { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section-tint { background: var(--sage); }
.section-dark { background: var(--green-800); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .section-intro { color: rgba(250, 245, 236, 0.82); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 200;
  background: var(--green-800);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(226, 114, 91, 0.38);
}
.btn-primary:hover { background: var(--terracotta-dark); color: var(--white); }

.btn-secondary {
  background: var(--green-800);
  color: var(--cream);
}
.btn-secondary:hover { background: var(--green-700); color: var(--cream); }

.btn-ghost {
  border-color: var(--green-700);
  color: var(--green-700);
  background: transparent;
}
.btn-ghost:hover { background: var(--green-800); color: var(--cream); border-color: var(--green-800); }

.btn-call {
  background: var(--amber);
  color: var(--green-900);
  box-shadow: 0 8px 22px rgba(242, 166, 90, 0.4);
}
.btn-call:hover { background: #ffb96f; color: var(--green-900); }

.btn-outline-light {
  border-color: rgba(250, 245, 236, 0.7);
  color: var(--cream);
  background: transparent;
}
.btn-outline-light:hover { background: var(--cream); color: var(--green-800); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 64, 52, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark svg { border-radius: 12px; box-shadow: var(--shadow-card); }
.brand-logo {
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
  background: var(--white);
}
.brand-logo-footer { border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--green-800);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav-list a:not(.btn) {
  position: relative;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 0.3rem 0;
}
.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--terracotta);
  transition: right 0.22s ease;
}
.nav-list a:not(.btn):hover::after,
.nav-list a:not(.btn).active::after { right: 0; }
.nav-list a:not(.btn):hover { color: var(--green-800); }
.nav-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(19, 64, 52, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--green-800);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(226, 114, 91, 0.18);
}

.hero .lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.1rem;
}

.hero-facts {
  display: grid;
  gap: 0.75rem;
}
.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-facts svg { flex: 0 0 auto; margin-top: 0.2rem; color: var(--terracotta); }
.hero-facts a { color: inherit; }

/* Hero artwork */
.hero-art {
  position: relative;
  min-height: 420px;
}

.hero-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 166, 90, 0.55), transparent 42%),
    radial-gradient(circle at 18% 82%, rgba(226, 114, 91, 0.35), transparent 46%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: 58% 42% 55% 45% / 52% 48% 60% 40%;
  animation: blob-morph 14s ease-in-out infinite alternate;
}

@keyframes blob-morph {
  0%   { border-radius: 58% 42% 55% 45% / 52% 48% 60% 40%; }
  50%  { border-radius: 45% 55% 48% 52% / 58% 42% 55% 45%; }
  100% { border-radius: 52% 48% 60% 40% / 45% 55% 48% 52%; }
}

.hero-img {
  position: absolute;
  inset: 12% 14%;
  width: 72%;
  height: 76%;
  object-fit: cover;
  object-position: center center;
  background: var(--white);
  border-radius: 58% 42% 55% 45% / 52% 48% 60% 40%;
  animation: blob-morph 14s ease-in-out infinite alternate;
  box-shadow: 0 24px 60px rgba(13, 47, 39, 0.45);
}

.hero-pulse {
  position: absolute;
  left: 6%; right: 6%;
  bottom: 4%;
  width: 88%;
  height: 60px;
  opacity: 0.9;
}

.hero-chip {
  position: absolute;
  padding: 0.55rem 1.05rem;
  background: var(--cream);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-800);
  box-shadow: var(--shadow-card);
  animation: chip-float 6s ease-in-out infinite;
}
.hero-chip-1 { top: 9%; left: 0; }
.hero-chip-2 { bottom: 16%; right: 0; animation-delay: -3s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Trust bar */
.trust-bar {
  background: var(--green-800);
  color: var(--cream);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.2rem;
  font-weight: 700;
  font-size: 0.98rem;
}
.trust-inner span { white-space: nowrap; }

/* ---------- Section heads ---------- */
.section-head {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.kicker::before, .kicker::after {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.7rem 3px;
  opacity: 0.6;
}
.kicker-light { color: var(--amber); }
.section-intro { color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-card);
  border-top: 5px solid var(--amber);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.value-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--sand);
  border-radius: 18px;
  color: var(--green-700);
  margin-bottom: 1.1rem;
}
.value-icon svg { width: 32px; height: 32px; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--terracotta), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  background: var(--green-800);
  color: var(--amber);
  border-radius: 20px 20px 20px 6px;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card p { margin: 0; color: var(--ink-soft); }

.services-note {
  text-align: center;
  margin: 2.4rem 0 0;
  font-weight: 700;
  color: var(--green-800);
}

/* ---------- Physios ---------- */
.physio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.physio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.physio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.physio-photo {
  position: relative;
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(242, 166, 90, 0.35), transparent 55%),
    linear-gradient(150deg, var(--sage), #c4dcd0);
  overflow: hidden;
}
.physio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.35s ease;
}
.physio-card:hover .physio-photo img { transform: scale(1.04); }
.physio-initials {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--green-800);
  opacity: 0.55;
}
.photo-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(19, 64, 52, 0.85);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.physio-body { padding: 1.6rem 1.7rem 1.8rem; }
.physio-role {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: -0.3rem 0 0.8rem;
}
.physio-bio { color: var(--ink-soft); font-size: 0.98rem; }
.physio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.physio-tags li {
  background: var(--sand);
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

/* ---------- Visit / location ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.visit-details { display: grid; gap: 1.4rem; align-content: start; }

.visit-block {
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(250, 245, 236, 0.14);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.7rem;
}
.visit-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.visit-block p { color: rgba(250, 245, 236, 0.88); }
.visit-block .btn { margin-top: 0.4rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(250, 245, 236, 0.88);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.45rem 0;
  font-weight: 600;
}
.hours-table th { font-weight: 700; }
.hours-table tr + tr { border-top: 1px dashed rgba(250, 245, 236, 0.2); }

.visit-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: rgba(250, 245, 236, 0.88);
}
.visit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  filter: saturate(0.85);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-field { margin-bottom: 1.15rem; }
.form-field label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}
.form-field label span { color: var(--terracotta); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(19, 64, 52, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(36, 118, 95, 0.15);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field .invalid,
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: var(--terracotta-dark);
  box-shadow: 0 0 0 4px rgba(226, 114, 91, 0.15);
}

.form-status {
  margin: 0.9rem 0 0;
  font-weight: 700;
  min-height: 1.4em;
}
.form-status.ok { color: var(--green-600); }
.form-status.error { color: var(--terracotta-dark); }

.contact-card {
  background: var(--green-800);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}
.contact-card h3 { color: var(--cream); }
.contact-list { margin-bottom: 1.4rem; }
.contact-list li { padding: 0.7rem 0; border-top: 1px dashed rgba(250, 245, 236, 0.22); }
.contact-list li:first-child { border-top: 0; }
.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.15rem;
}
.contact-list a { color: var(--cream); font-weight: 700; }
.contact-list a:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(250, 245, 236, 0.8);
  padding: 2.6rem 0 1.4rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(250, 245, 236, 0.14);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0;
}
.footer-tag { margin: 0; font-size: 0.85rem; color: rgba(250, 245, 236, 0.6); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a {
  color: rgba(250, 245, 236, 0.8);
  text-decoration: none;
  font-weight: 700;
}
.footer-nav a:hover { color: var(--amber); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1.2rem;
  font-size: 0.88rem;
}
.footer-base p { margin: 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 340px; order: -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .physio-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid, .contact-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 340px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(19, 64, 52, 0.12);
    box-shadow: 0 24px 40px rgba(19, 64, 52, 0.15);
    padding: 0.6rem 1.25rem 1.1rem;
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { border-top: 1px solid rgba(19, 64, 52, 0.08); }
  .nav-list li:first-child { border-top: 0; }
  .nav-list a:not(.btn) {
    display: block;
    padding: 0.85rem 0.2rem;
  }
  .nav-list a:not(.btn)::after { display: none; }
  .nav-cta { margin: 0.7rem 0 0; border-top: 0 !important; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .services-grid, .physio-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-inner { gap: 0.4rem 1.2rem; font-size: 0.9rem; }
  .footer-base { flex-direction: column; }
}

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