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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fefdf8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utility ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #047857;
  background: #d1fae5;
  padding: .375rem .875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #064e3b;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #065f46;
  opacity: .75;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  padding: .875rem 1.75rem;
  border-radius: 100px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: #065f46;
  color: #fefdf8;
  box-shadow: 0 4px 14px rgba(6, 95, 70, .3);
}

.btn--primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(6, 95, 70, .35);
}

.btn--ghost {
  background: rgba(255,255,255,.85);
  color: #065f46;
  border: 1.5px solid rgba(6, 95, 70, .25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: #fff;
  border-color: #065f46;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: #065f46;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.btn--white:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.15);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, .08);
  transition: background .3s, box-shadow .3s;
}

.nav-scrolled.scrolled {
  background: rgba(254, 253, 248, .97);
  box-shadow: 0 2px 20px rgba(6, 95, 70, .08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #064e3b;
}

.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: #065f46;
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.nav-link:hover {
  background: rgba(6, 95, 70, .07);
}

.nav-link--cta {
  background: #065f46;
  color: #fefdf8;
  border-radius: 100px;
  margin-left: .5rem;
}

.nav-link--cta:hover {
  background: #047857;
  color: #fefdf8;
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .5rem;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #065f46;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #fefdf8 0%, #ecfdf5 50%, #d1fae5 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(167, 243, 208, .4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(209, 250, 229, .5) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(110, 231, 183, .2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #047857;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(6, 95, 70, .15);
  padding: .5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #064e3b;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hero-headline-accent {
  color: #047857;
  font-style: italic;
}

.hero-sub {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: #065f46;
  opacity: .8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

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

/* Floating stat cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(6, 95, 70, .1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(6, 95, 70, .08);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 95, 70, .12);
}

.stat-card--1 { animation: float1 6s ease-in-out infinite; }
.stat-card--2 { animation: float2 7s ease-in-out infinite; }
.stat-card--3 { animation: float3 5.5s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #064e3b;
  line-height: 1.2;
}

.stat-card-label {
  font-size: .8125rem;
  color: #065f46;
  opacity: .7;
  margin-top: .125rem;
}

/* ── Products ── */
.products {
  padding: 6rem 0;
  background: #fefdf8;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(6, 95, 70, .08);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 95, 70, .1);
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 400 / 260;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.product-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #ecfdf5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: .375rem;
}

.product-card-body p {
  font-size: .9375rem;
  line-height: 1.65;
  color: #065f46;
  opacity: .75;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 95, 70, .12);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 60%;
  height: 40%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 1.25rem;
  z-index: -1;
}

.about-content .section-tag {
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #065f46;
  opacity: .8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  font-weight: 500;
  color: #064e3b;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Services ── */
.services {
  padding: 6rem 0;
  background: #fefdf8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(6, 95, 70, .08);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #065f46, #34d399);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 95, 70, .1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #d1fae5;
  line-height: 1;
  margin-bottom: .75rem;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: #ecfdf5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: .625rem;
}

.service-card p {
  font-size: .9375rem;
  line-height: 1.7;
  color: #065f46;
  opacity: .75;
}

/* ── CTA Band ── */
.cta-band {
  padding: 6rem 0;
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #065f46 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(167, 243, 208, .15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(110, 231, 183, .1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-quote-icon {
  position: absolute;
  top: -1.5rem;
  left: - .5rem;
  opacity: .5;
}

.cta-quote-attribution {
  padding-left: .5rem;
}

.cta-quote-author {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-size: .9375rem;
  font-weight: 600;
  color: #a7f3d0;
}

.cta-band-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.cta-band-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Location ── */
.location {
  padding: 6rem 0;
  background: #fefdf8;
}

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

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 8px 32px rgba(6, 95, 70, .08);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(6, 95, 70, .08);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: box-shadow .2s, transform .2s;
}

.location-card:hover {
  box-shadow: 0 8px 24px rgba(6, 95, 70, .08);
  transform: translateY(-2px);
}

.location-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #ecfdf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: .25rem;
}

.location-card p {
  font-size: .9375rem;
  line-height: 1.65;
  color: #065f46;
  opacity: .8;
}

.location-card a {
  color: #047857;
  font-weight: 500;
  transition: color .2s;
}

.location-card a:hover {
  color: #065f46;
  text-decoration: underline;
}

.hours-highlight {
  font-weight: 600;
  color: #064e3b;
}

/* ── Contact ── */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #065f46;
  opacity: .8;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: #065f46;
  transition: color .2s;
}

.contact-detail:hover {
  color: #047857;
}

.contact-detail svg {
  flex-shrink: 0;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(6, 95, 70, .08);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(6, 95, 70, .06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: #064e3b;
  margin-bottom: .5rem;
}

.form-input {
  width: 100%;
  padding: .875rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9375rem;
  color: #064e3b;
  background: #fefdf8;
  border: 1.5px solid rgba(6, 95, 70, .15);
  border-radius: .75rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-input::placeholder {
  color: #065f46;
  opacity: .4;
}

.form-input:focus {
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4, 120, 87, .1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
  animation: fadeIn .4s ease;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: .625rem;
}

.form-success p {
  font-size: .9375rem;
  line-height: 1.65;
  color: #065f46;
  opacity: .75;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.footer {
  background: #064e3b;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 320px;
}

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

.footer-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: .875rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  transition: color .2s;
}

.footer-col a:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }

  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
  }

  .hero-container {
    grid-template-columns: 1.1fr .9fr;
  }

  .about-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .cta-band-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(254, 253, 248, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: .25rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: .75rem 1rem;
    font-size: 1.0625rem;
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: .5rem;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .about-image-accent {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta-band-buttons {
    flex-direction: column;
  }

  .cta-band-buttons .btn {
    justify-content: center;
  }
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
