/* ============================================
   LEMAYS PIZZA, SUBS & CALZONES
   Vibrant Modern · Emerald + Cream
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1A3A2D;
  background: #FDF6E3;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --emerald: #0D7C66;
  --emerald-dark: #095C4B;
  --emerald-deeper: #064A3B;
  --cream: #FDF6E3;
  --cream-dark: #F5E6C8;
  --cream-light: #FFF9ED;
  --text-dark: #1A3A2D;
  --text-light: #FDF6E3;
  --text-muted: #5A7D6E;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 124, 102, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 124, 102, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: #F4A259; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(13, 124, 102, 0.35);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 124, 102, 0.40);
}
.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(253, 246, 227, 0.6);
}
.btn-outline-light:hover {
  background: rgba(253, 246, 227, 0.12);
  border-color: var(--text-light);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--cream);
  color: var(--emerald-dark);
  box-shadow: var(--shadow);
}
.btn-light:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(13, 124, 102, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── SECTION TITLE ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 124, 102, 0.08);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253, 246, 227, 0.97);
  box-shadow: 0 2px 20px rgba(13, 124, 102, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--emerald);
}
.brand-icon {
  width: 36px;
  height: 36px;
  color: var(--emerald);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--emerald); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--emerald-deeper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 74, 59, 0.92) 0%,
    rgba(13, 124, 102, 0.82) 50%,
    rgba(9, 92, 75, 0.88) 100%
  );
}
.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-shape--bl {
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(244, 162, 89, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-shape--tr {
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(253, 246, 227, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}
.hero-shape--circle {
  top: 20%;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(244, 162, 89, 0.3);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F4A259;
  background: rgba(244, 162, 89, 0.12);
  border: 1px solid rgba(244, 162, 89, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 1.08;
}
.hero-desc {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(253, 246, 227, 0.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
}
.trust-item svg { color: #F4A259; flex-shrink: 0; }

/* ── COLOR BLOCK ── */
.color-block {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.color-block--cream { background: var(--cream); }
.geo {
  position: absolute;
  pointer-events: none;
}
.geo--triangle {
  width: 0;
  height: 0;
  border-style: solid;
}
.geo--tl {
  top: -40px;
  left: -40px;
  border-width: 0 0 160px 160px;
  border-color: transparent transparent var(--emerald) transparent;
  opacity: 0.06;
}
.geo--circle {
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: var(--emerald);
  border-radius: 50%;
  opacity: 0.05;
}

/* ── MENU ── */
.menu {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}
.menu-card-body {
  padding: 28px;
}
.menu-card-icon {
  width: 48px;
  height: 48px;
  color: var(--emerald);
  margin-bottom: 16px;
}
.menu-card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.menu-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.menu-card-list {
  font-size: 0.875rem;
  color: var(--text-dark);
}
.menu-card-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(13, 124, 102, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 124, 102, 0.06);
  border: 1px solid rgba(13, 124, 102, 0.12);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.menu-note svg { color: var(--emerald); flex-shrink: 0; }

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 124, 102, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7/9;
}
.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--emerald);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.2;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--emerald);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--emerald);
  overflow: hidden;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(253, 246, 227, 0.04);
  top: -200px;
  left: -150px;
}
.cta-shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(244, 162, 89, 0.08);
  bottom: -100px;
  right: 10%;
}
.cta-shape--3 {
  width: 150px;
  height: 150px;
  border: 2px solid rgba(253, 246, 227, 0.1);
  top: 15%;
  right: 5%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-light);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.125rem;
  color: rgba(253, 246, 227, 0.80);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ── LOCATION ── */
.location {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream-light);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}
.info-icon {
  width: 48px;
  height: 48px;
  background: var(--emerald);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light);
}
.info-icon svg { width: 22px; height: 22px; }
.info-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.info-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-card a { color: var(--emerald); font-weight: 600; transition: var(--transition); }
.info-card a:hover { color: var(--emerald-dark); }
.info-sub { font-size: 0.8125rem; color: var(--text-muted); font-style: italic; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.map-link {
  display: block;
  position: relative;
}
.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7/4.5;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 124, 102, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  transition: var(--transition);
}
.map-link:hover .map-overlay { background: rgba(13, 124, 102, 0.80); }

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 124, 102, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left .section-title { margin-top: 8px; margin-bottom: 20px; }
.contact-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-text a { color: var(--emerald); font-weight: 600; }
.contact-text a:hover { text-decoration: underline; }
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cf-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 124, 102, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}
.cf-icon svg { width: 20px; height: 20px; }
.contact-feature span {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-right {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(13, 124, 102, 0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(13, 124, 102, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(13, 124, 102, 0.08);
  border: 1px solid rgba(13, 124, 102, 0.2);
  border-radius: var(--radius);
  color: var(--emerald-dark);
  font-weight: 600;
  font-size: 0.9375rem;
}
.form-success svg { color: var(--emerald); flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--emerald-deeper);
  color: rgba(253, 246, 227, 0.70);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253, 246, 227, 0.10);
}
.footer-brand .brand { color: var(--text-light); margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text-light); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 246, 227, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--emerald); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trust { gap: 20px; }
  
  .menu-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  
  .location-grid { grid-template-columns: 1fr; }
  
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-right { padding: 28px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .about-stats { gap: 20px; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(32px); }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}

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