/* ============================================================
   FABER LOCK WORK — styles.css
   ============================================================
   HOW TO EDIT COLORS:
   All brand colors are defined as CSS variables at the top of
   this file under :root {}. Change them here and they update
   everywhere on the site automatically.

   PRIMARY GREEN  → --brand-primary
   ACCENT GOLD    → --brand-accent
   ============================================================ */

/* ── BRAND COLOR TOKENS ─────────────────────────────────────── */
:root {
  /* Primary green palette */
  --brand-primary:       #1a4731;
  --brand-primary-dark:  #122e20;
  --brand-primary-light: #245c40;

  /* Accent gold palette */
  --brand-accent:        #e8a020;
  --brand-accent-dark:   #c8881a;
  --brand-accent-light:  #f0b840;

  /* Neutral / UI */
  --bg-white:   #ffffff;
  --bg-light:   #f9fafb;
  --border:     #e2e8e4;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-muted: #6b7280;

  /* Spacing & shape */
  --radius:     0.5rem;
  --radius-lg:  0.75rem;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.15);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.max-w-7xl {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .max-w-7xl { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .max-w-7xl { padding-left: 2rem; padding-right: 2rem; }
}

.section {
  padding: 5rem 1rem;
}
.bg-white { background: var(--bg-white); }
.bg-light  { background: var(--bg-light); }





.cert-logo { height: 120px; width: auto; margin: auto; padding-bottom:20px; }






/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--brand-accent);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.btn-primary:hover {
  background: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.btn-outline:hover {
  background: #fff;
  color: var(--brand-primary);
  transform: translateY(-2px);
}


/* ── BADGES ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  color: var(--brand-accent-dark);
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-green {
  background: rgba(26,71,49,0.1);
  color: var(--brand-primary);
  border-color: rgba(26,71,49,0.3);
}


/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.accent-line.center { margin: 0.75rem auto 1.5rem; }


/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
}
.card-hover {
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.card-body { height: 100%; }
.card-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.2rem;
}
.card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ── NAVIGATION ──────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo-link { text-decoration: none; display: flex; align-items: center; }
.nav-logo { height: 90px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-btn:hover {
  color: var(--brand-accent);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-btn:hover {
  color: var(--brand-accent);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-phone {
  margin-left: 1rem;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* Hamburger — mobile only */
.hamburger-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger-toggle { display: none !important; }
}
.bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--brand-primary-dark);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-nav-btn {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 0.5rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.mobile-nav-btn:hover { color: var(--brand-accent); }
.mobile-phone-btn {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}


/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  /* ── CHANGE HERO IMAGE HERE ── */
  background-image: url('images/hero.avif');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,46,32,0.88) 0%, rgba(26,71,49,0.75) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem 5rem;
}
.hero-badge {
  margin-bottom: 1.25rem;
  display: inline-block;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.accent-text { color: var(--brand-accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-cta-btn { font-size: 1.05rem; padding: 0.9rem 2rem; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-check {
  color: var(--brand-accent);
  font-weight: 700;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 60px; }


/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--brand-primary);
  padding: 2.5rem 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { padding: 0.5rem; }
.stat-val {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}


/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.check-icon { flex-shrink: 0; margin-top: 1px; }


/* ── WHY CHOOSE US GRID ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.why-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}


/* ── HISTORY ─────────────────────────────────────────────────── */
.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .history-grid { grid-template-columns: 1fr 1fr; }
}
.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--brand-primary-light);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-item { position: relative; }
.timeline-dot {
  position: absolute;
  left: -2.625rem;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 2px solid white;
  box-shadow: 0 0 0 3px var(--brand-primary-light);
}
.timeline-dot-current {
  background: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.3);
}
.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0.35rem 0 0.25rem;
}
.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ── MISSION & VALUES ────────────────────────────────────────── */
.mission-banner {
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.mission-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.mission-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
  font-style: italic;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
.value-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}


/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stars {
  color: var(--brand-accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.875rem;
}
.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ── HOURS & RATES ───────────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hours-grid { grid-template-columns: repeat(3, 1fr); }
}
.hours-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}
.hours-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.hours-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}
.hours-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ── DISCOUNTS ───────────────────────────────────────────────── */
.discounts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .discounts-grid { grid-template-columns: repeat(4, 1fr); }
}
.discount-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}


/* ── EMERGENCY CTA ───────────────────────────────────────────── */
.emergency-cta {
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
  padding: 3.5rem 1rem;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.cta-phone-btn {
  font-size: 1.2rem;
  padding: 1.1rem 2.5rem;
}


/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.contact-phone {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--brand-accent);
  text-decoration: none;
}
.contact-phone:hover { color: var(--brand-accent-dark); }
.contact-email {
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}
.contact-email:hover { text-decoration: underline; }
.contact-hours-line {
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
.contact-emergency-line {
  font-size: 0.875rem;
  color: var(--brand-accent);
  font-weight: 700;
  margin: 0;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.25rem; }
.area-tag {
  display: inline-block;
  background: #f0fdf4;
  color: var(--brand-primary);
  border: 1.5px solid rgba(26,71,49,0.25);
  border-radius: 0.375rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);

}
.map-container iframe { height: 420px; }
.map-caption {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}


/* ── TERMS & CONDITIONS ──────────────────────────────────────── */
.terms-wrap { max-width: 900px; }
.terms-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 2rem;
}
.terms-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.terms-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0;
}
.terms-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.terms-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--brand-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 1rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
}
.footer-logo { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.65);
}
.footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-decoration: none;
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--brand-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(232,160,32,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(232,160,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,160,32,0); }
}

.animate-fade-in-up { animation: fadeInUp 0.7s ease both; }
.animate-fade-in    { animation: fadeIn   0.6s ease both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.pulse-btn { animation: pulse-ring 2s infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
