/* =============================================================================
   BACHI CONCRETE — DESIGN SYSTEM v2.0
   Built from scratch 2026-04-24 · Forest green logo-matched brand
   
   PALETTE
   ▸ Primary:   Forest Green  #1B4332  (hero, brand, authority)
   ▸ Dark:      Deeper Forest #0f3024  (hover, footer, contrast)
   ▸ Accent:    Warm Amber    #fbbf24  (CTAs on dark, highlights — rare use)
   ▸ Ground:    Cream         #fafaf9  (page BG, cards)
   ▸ Ink:       Charcoal      #1c1917  (body text)
   ▸ Whisper:   Stone Gray    #57534e  (secondary text, labels)
   
   TYPOGRAPHY
   ▸ Display:   IBM Plex Serif (headlines, authority)
   ▸ Body:      IBM Plex Sans (readability)
   ▸ Data:      IBM Plex Mono (credentials, specs, precision)
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
   ----------------------------------------------------------------------------- */
:root {
  /* Brand colors — the SINGLE source of truth */
  --forest-900: #0f3024;
  --forest-800: #14532d;
  --forest-700: #166534;
  --forest-600: #1B4332;   /* Primary brand color */
  --forest-500: #2d6a4f;
  --forest-400: #40916c;
  --forest-100: rgba(27,67,50,0.08);

  --amber-500: #fbbf24;
  --amber-600: #f59e0b;
  --amber-700: #d97706;

  --cream: #fafaf9;
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  /* Semantic tokens */
  --bg: var(--cream);
  --fg: var(--stone-900);
  --accent: var(--forest-600);
  --accent-hover: var(--forest-900);
  --accent-light: var(--forest-400);
  --pop: var(--amber-500);
  --pop-hover: var(--amber-600);

  /* Typography */
  --font-serif: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing & layout */
  --gutter: 1.5rem;
  --max: 1200px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s var(--ease);
  --t-base: 0.25s var(--ease);
  --t-slow: 0.4s var(--ease);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-forest: 0 4px 16px rgba(27,67,50,0.2);
  --shadow-amber: 0 4px 16px rgba(251,191,36,0.35);
}

/* -----------------------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
}

img, svg { max-width: 100%; display: block; height: auto; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--accent-hover); }

ul, ol { padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }

.mono { font-family: var(--font-mono); }

/* Accessibility: focus visible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------------------------------------------------------------
   3. UTILITY COMPONENTS
   ----------------------------------------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

/* On dark backgrounds, eyebrow uses amber */
.dark-section .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--pop);
}
.dark-section .eyebrow::before,
.hero .eyebrow::before,
.cta-band .eyebrow::before {
  background: var(--pop);
}

/* -----------------------------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}

/* Primary button on LIGHT backgrounds — forest green */
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
  box-shadow: var(--shadow-forest);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,67,50,0.3);
}

/* Primary button on DARK backgrounds (hero) — AMBER for visibility */
.hero .btn-primary,
.dark-section .btn-primary,
.cta-band .btn-primary {
  background: var(--pop);
  color: var(--forest-900);
  border-color: var(--pop);
  box-shadow: var(--shadow-amber);
}
.hero .btn-primary:hover,
.dark-section .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: var(--pop-hover);
  border-color: var(--pop-hover);
  color: var(--forest-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(251,191,36,0.5);
}

/* Outline button — defaults for light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--cream);
}

/* Outline button on DARK — white border */
.hero .btn-outline,
.dark-section .btn-outline,
.cta-band .btn-outline,
.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover,
.dark-section .btn-outline:hover,
.cta-band .btn-outline:hover,
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border-color: var(--cream);
}

/* -----------------------------------------------------------------------------
   5. HEADER
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,249,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--forest-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.875rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

/* Logo — real image, sized prominently */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}

.logo-img {
  height: 68px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .logo-img { height: 52px !important; max-width: 150px !important; }
}

/* Fallback: if text logo structure exists */
.logo-mark {
  display: none; /* hide old text monograms when using real logo */
}
.logo-text { display: none; }

/* Nav */
.site-nav, nav.primary {
  display: flex;
  align-items: center;
}
.site-nav ul, nav.primary ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.site-nav a, nav.primary a {
  color: var(--stone-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.site-nav a:hover, nav.primary a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .site-nav, nav.primary { display: none; }
}

/* Header CTAs */
.header-cta, .header-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .header-cta, .header-ctas { gap: 0.5rem; }
  .header-cta .btn, .header-ctas .btn {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
}

/* Language toggle */
.lang-toggle, .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--stone-500);
  background: transparent;
  border: 1px solid var(--stone-300);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
}
.lang-toggle:hover, .lang-switch:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lang-switch a {
  color: inherit;
  text-decoration: none;
  padding: 0 0.15rem;
}
.lang-switch a.active {
  color: var(--forest-600);
  font-weight: 700;
}

/* -----------------------------------------------------------------------------
   6. HERO — Forest Green Native
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 12vw, 9rem);
  overflow: hidden;
  background: var(--forest-600);
  color: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 30%),
    linear-gradient(135deg, var(--forest-600) 0%, var(--forest-900) 100%),
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,0.015) 40px 41px);
  z-index: 0;
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }
}

.hero-text { max-width: 40rem; }

.hero h1 {
  color: var(--cream);
  margin: 1.5rem 0 1.25rem;
  font-weight: 500;
}
.hero h1 .accent {
  color: var(--pop);
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.scarcity-line {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust-item .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.trust-item .value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

/* Hero spec card */
.hero-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--fg);
  position: relative;
}

.hero-card h3 {
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--stone-200);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
.spec-row:last-child { border-bottom: 0; }

.spec-label { color: var(--stone-600); }
.spec-value { color: var(--fg); font-weight: 600; }
.spec-value.accent { color: var(--accent); font-weight: 700; }

/* -----------------------------------------------------------------------------
   7. STATS STRIP
   ----------------------------------------------------------------------------- */
.stats-strip {
  background: var(--stone-100);
  padding: 3rem 0;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone-600);
  line-height: 1.4;
}

/* -----------------------------------------------------------------------------
   8. SECTIONS
   ----------------------------------------------------------------------------- */
section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  font-size: 1.0625rem;
  color: var(--stone-600);
}

/* Dark sections */
.dark-section {
  background: var(--forest-900);
  color: var(--cream);
}
.dark-section h2, .dark-section h3, .dark-section h4 {
  color: var(--cream);
}
.dark-section p {
  color: rgba(255,255,255,0.85);
}

/* Services section */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.service-card {
  display: block;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--fg);
  transition: all var(--t-base);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-forest);
  color: var(--fg);
}
.service-card h3 {
  font-family: var(--font-serif);
  color: var(--fg);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.service-card p {
  color: var(--stone-600);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.service-card .service-price,
.service-card .service-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.service-card .service-num {
  font-family: var(--font-mono);
  color: var(--stone-400);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  display: block;
}
.service-card .service-desc {
  color: var(--stone-600);
}

/* -----------------------------------------------------------------------------
   9. CITIES GRID
   ----------------------------------------------------------------------------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.city-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--forest-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  transition: all var(--t-base);
}
.city-card:hover {
  background: var(--forest-700);
  border-color: var(--pop);
  color: var(--cream);
  transform: translateY(-2px);
}
.city-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
}
.city-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* -----------------------------------------------------------------------------
   10. PROCESS / FEATURE BLOCKS
   ----------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.process-step {
  padding: 1.5rem;
  border-top: 2px solid var(--accent);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--fg);
}
.process-step p {
  color: var(--stone-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* -----------------------------------------------------------------------------
   11. TESTIMONIALS
   ----------------------------------------------------------------------------- */
.testimonial {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem var(--gutter);
  text-align: center;
}
.testimonial blockquote,
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin: 0 0 1.5rem;
}
.testimonial-attr {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--stone-600);
  letter-spacing: 0.02em;
}
.testimonial-attr strong {
  color: var(--accent);
}

/* -----------------------------------------------------------------------------
   12. CTA BAND
   ----------------------------------------------------------------------------- */
.cta-band {
  background: var(--forest-600);
  background-image: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-900) 100%);
  color: var(--cream);
  text-align: center;
}
.cta-band-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

/* -----------------------------------------------------------------------------
   13. FOOTER
   ----------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-900);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.925rem;
}
.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--pop);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.license-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* -----------------------------------------------------------------------------
   14. FORMS
   ----------------------------------------------------------------------------- */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--fg);
  background: var(--cream);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast);
  margin-bottom: 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
label {
  display: block;
  font-weight: 600;
  color: var(--stone-800);
  font-size: 0.925rem;
  margin-bottom: 0.35rem;
}

/* -----------------------------------------------------------------------------
   15. UTILITIES
   ----------------------------------------------------------------------------- */
.text-center { text-align: center; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* -----------------------------------------------------------------------------
   16. REVEAL ANIMATIONS
   ----------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.7s var(--ease) forwards;
}
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------------------------------
   END
   ============================================================================= */
