/*  Tyre Center — Professional Stylesheet  */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --bg:          #0c0d10;
  --surface:     #12141a;
  --light:       #f4f5f9;
  --white:       #ffffff;
  --text:        #1a1d26;
  --text-muted:  #6b7280;
  --border:      #e2e5ed;
  --accent:      #e31e24;
  --accent-dark: #b91318;
  --accent-glow: rgba(227,30,36,0.18);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      16px;
  --radius-sm:   10px;
  --max-width:   1160px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, select, textarea { font: inherit; }

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

/* ─── Accessibility ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--white); color: var(--bg);
  padding: .75rem 1.25rem; border-radius: .5rem; z-index: 2000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.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;
}

/* ─── Scroll-reveal ───────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(12,13,16,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: rgba(255,255,255,.07);
  box-shadow: 0 4px 40px rgba(0,0,0,.45);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

/* Logo */
.logo {
  display: inline-flex; align-items: center;
  gap: 1rem; color: var(--white);
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: .01em;
}
.logo small {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  letter-spacing: .02em;
}
.logo-mark {
  width: 2.8rem; height: 2.8rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff5a5f);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 900; font-size: .95rem;
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.logo:hover .logo-mark {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px var(--accent-glow);
}

/* Nav links */
.site-nav ul {
  display: flex; align-items: center; gap: .25rem;
}
.site-nav a {
  display: block;
  color: rgba(255,255,255,.78);
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: .92rem; font-weight: 500;
  transition: background .2s, color .2s, transform .2s;
}
.site-nav a:hover {
  background: rgba(255,255,255,.09);
  color: var(--white);
  transform: translateY(-1px);
}
.site-nav a.active {
  background: rgba(227,30,36,.16);
  color: #ff7b7e;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: 0;
  padding: .4rem; cursor: pointer;
  width: 38px; height: 38px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 999px; background: var(--white);
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid; align-items: center;
  overflow: hidden;
  background: #08090c;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(6,7,9,.92) 0%, rgba(6,7,9,.55) 52%, rgba(6,7,9,.75) 100%),
    linear-gradient(180deg, rgba(6,7,9,.2) 0%, rgba(6,7,9,.6) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr minmax(300px, 380px);
  gap: 2.5rem;
  padding: 7rem 0 6rem;
  color: var(--white);
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.25rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .78rem;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  max-width: 14ch;
  color: var(--white);
  line-height: 1.05;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 52ch;
  line-height: 1.7;
}

.hero-points {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.hero-points span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: .5rem;
}

/* Hero card */
.hero-card {
  align-self: center;
  background: rgba(14,16,22,.88);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.hero-card h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.hero-card p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-bottom: .75rem;
  line-height: 1.6;
}
.hero-card a { color: #ff8a8d; transition: color .2s; }
.hero-card a:hover { color: var(--white); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent); color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 24px rgba(227,30,36,.4); }

.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.full-width { width: 100%; }

/* ─── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.light-section { background: var(--light); }

.section-heading {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-heading.center-text { text-align: center; }
.section-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-top: .75rem;
  margin-bottom: .9rem;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ─── Feature cards ───────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #c8cdd8;
}
.icon-circle {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  background: var(--accent-glow);
  border-radius: 50%;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .93rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Testimonial / quote cards ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.quote-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.4rem;
  font-size: 5rem; font-family: "Barlow", sans-serif; font-weight: 900;
  color: var(--accent); opacity: .12; line-height: 1;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card h3  { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .75rem; }
.quote-card p   { font-size: 1rem; color: var(--text); line-height: 1.65; font-style: italic; }

/* ─── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(227,30,36,.18) 0%, transparent 55%),
    linear-gradient(160deg, #0c0e14 0%, #161924 100%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1, .page-hero h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  max-width: 18ch;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.page-hero > .container > p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  max-width: 55ch;
  line-height: 1.7;
}

/* ─── Split layout ────────────────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.split-layout h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: .75rem 0 1rem;
}
.split-layout > div > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 52ch;
}

/* ─── Info panel ──────────────────────────────────────────────────────────── */
.info-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.info-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-panel h3 {
  font-size: 1.05rem; margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.accent-panel { border-top: 4px solid var(--accent); }

.plain-list { padding-left: 0; display: grid; gap: .65rem; }
.plain-list li {
  font-size: .97rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.plain-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.steps-list { padding-left: 0; counter-reset: steps; display: grid; gap: 1rem; }
.steps-list li {
  counter-increment: steps;
  padding-left: 3rem; position: relative;
  font-size: .97rem; color: var(--text-muted); line-height: 1.6;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute; left: 0; top: -.1em;
  width: 2rem; height: 2rem;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Barlow", sans-serif; font-weight: 800; font-size: .85rem;
}

/* ─── Stats grid ──────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-card h3 {
  font-size: 2rem; color: var(--accent);
  margin-bottom: .4rem;
}
.stat-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

/* ─── Service cards ───────────────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  border-top-width: 3px;
}
.service-card h2 {
  font-size: 1.12rem;
  margin-bottom: .6rem;
  color: var(--text);
}
.service-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.large-card { grid-column: span 2; }
.large-card h2 { font-size: 1.4rem; }

/* ─── Brand grid ──────────────────────────────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 110px;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.brand-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text);
}

/* ─── Vehicle cards ───────────────────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vehicle-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vehicle-card h2 { font-size: 1.15rem; color: var(--white); margin-bottom: .6rem; }
.vehicle-card p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ─── Tag row ─────────────────────────────────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
.tag-row span {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 600;
}

/* ─── Contact page ────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-panel, .form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.contact-panel h2, .form-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--border);
}
.contact-list { display: grid; gap: .9rem; margin-bottom: 2rem; }
.contact-list p { font-size: .97rem; color: var(--text-muted); line-height: 1.5; }
.contact-list strong { color: var(--text); font-weight: 600; }
.contact-list a { color: var(--accent); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

.contact-panel h3 { font-size: 1rem; margin-bottom: .9rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: .9rem;
}
.hours-table th { font-weight: 600; color: var(--text); }
.hours-table td { color: var(--text-muted); }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }

/* Form */
.booking-form { display: grid; gap: 1.1rem; }
.form-group { display: grid; gap: .4rem; }
label { font-size: .88rem; font-weight: 600; color: var(--text); }

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  background: var(--white);
  color: var(--text);
  font-size: .97rem;
  transition: border-color .22s, box-shadow .22s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  outline: none;
}
input::placeholder, textarea::placeholder { color: #aab0be; }
textarea { resize: vertical; min-height: 120px; }

/* Map */
.map-frame {
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-frame iframe { width: 100%; min-height: 400px; border: 0; display: block; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #09090d;
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.site-footer h2 {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem; font-weight: 900;
  color: var(--white); margin-bottom: .9rem;
}
.site-footer h3 {
  font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin-bottom: .9rem;
}
.site-footer p { font-size: .93rem; line-height: 1.7; margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.65); transition: color .2s; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  padding: 1.25rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-grid   { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .vehicle-grid   { grid-template-columns: repeat(2,1fr); }
  .brand-grid     { grid-template-columns: repeat(4,1fr); }
  .service-grid   { grid-template-columns: repeat(2,1fr); }
  .large-card     { grid-column: span 2; }
  .hero-content   { grid-template-columns: 1.2fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .page-hero { padding: 4rem 0 3rem; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 5rem 0 4rem;
  }
  .hero h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-card { margin-top: .5rem; }

  .split-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }

  .feature-grid,
  .testimonial-grid,
  .brand-grid,
  .vehicle-grid,
  .stats-grid,
  .service-grid { grid-template-columns: 1fr 1fr; }

  .large-card { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 1rem; right: 1rem;
    top: calc(100% + .5rem);
    background: #13161e;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius);
    padding: .75rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .site-nav a { border-radius: var(--radius-sm); padding: .85rem 1.1rem; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 500px) {
  .feature-grid,
  .testimonial-grid,
  .brand-grid,
  .vehicle-grid,
  .stats-grid,
  .service-grid { grid-template-columns: 1fr; }
  .large-card { grid-column: auto; }

  .hero-points span { font-size: .78rem; padding: .4rem .8rem; }
  .page-hero h1, .page-hero h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .section-heading h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
