/* ============================================
   PRAIRIE FARMER COFFEE — STYLESHEET
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green-dark: #2D5A3D;
  --green-mid: #4A7C5C;
  --green-light: #A8C496;
  --green-pale: #C8D5B9;
  --green-whisper: #E8F0E4;
  --cream: #FAFAF5;
  --cream-warm: #F5F3EB;
  --cream-dark: #EDE9DC;
  --sand: #D4CDB8;
  --text-primary: #1A2E1F;
  --text-secondary: #4A5D4E;
  --text-muted: #7A8D7E;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 90, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(45, 90, 61, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 64px;
  }
}

/* --- Eyebrow --- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--green-light);
  flex-shrink: 0;
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.title-accent {
  font-style: italic;
  color: var(--green-dark);
}

/* --- Lead --- */
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 560px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-pale);
}

.btn-ghost:hover {
  background: var(--green-whisper);
  border-color: var(--green-light);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-dark);
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green-dark);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-light);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--green-dark);
  color: var(--white) !important;
  border-radius: var(--radius-lg);
  font-weight: 500;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-dark);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--green-dark);
  padding: 8px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--green-dark);
}

.mobile-cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 32px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-whisper) 50%, var(--cream-warm) 100%);
  padding: 100px 24px 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--green-dark) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero Text */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
}

.hero-eyebrow .eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--green-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.headline-accent {
  font-style: italic;
  color: var(--green-dark);
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.meta-item svg {
  color: var(--green-light);
}

/* Hero Image Column */
.hero-image-col {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover img {
  transform: scale(1.03);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45, 90, 61, 0.08) 100%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.hero-img-main {
  aspect-ratio: 3/4;
}

.hero-img-accent {
  aspect-ratio: 4/3;
  display: none;
}

.hero-stamp {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Hero Scroll */
.hero-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/9;
}

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

.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -16px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-float img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-text .section-title {
  margin-top: 8px;
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: var(--cream-dark);
  align-self: stretch;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-whisper) 100%);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.menu-header .section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-icon {
  width: 52px;
  height: 52px;
  background: var(--green-whisper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-items li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.5;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   ATMOSPHERE
   ============================================ */
.atmosphere {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.atm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.atm-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.atm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.atm-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.atm-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--green-whisper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.atm-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.atm-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.atm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.atm-img:hover img {
  transform: scale(1.03);
}

.atm-img-1 {
  aspect-ratio: 5/6.5;
}

.atm-img-2 {
  aspect-ratio: 4/3;
  display: none;
}

.atm-img-3 {
  aspect-ratio: 3/4;
  display: none;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-whisper) 0%, var(--cream) 100%);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-whisper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-card-arrow {
  color: var(--green-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
  color: var(--green-dark);
  transform: translateX(4px);
}

/* Form */
.visit-form-wrap {
  width: 100%;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 196, 150, 0.2);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-whisper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.success-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: var(--green-pale);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--green-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--green-pale);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-hours-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-hours p {
  font-size: 0.88rem;
  color: var(--green-light);
  line-height: 1.7;
}

.hours-time {
  font-weight: 500;
  color: var(--green-pale) !important;
}

.hours-closed {
  font-size: 0.82rem !important;
  color: var(--sand) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 213, 185, 0.15);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--green-light);
}

.footer-location {
  font-size: 0.78rem;
  color: var(--sand);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding: 80px 48px 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .hero-img-accent {
    display: block;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .atm-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .atm-img-2 {
    display: block;
  }

  .visit-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

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

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

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 1200px) {
  .hero {
    padding: 80px 64px 60px;
  }

  .hero-img-accent {
    position: absolute;
    bottom: 0;
    left: -80px;
    width: 55%;
    z-index: 2;
    border: 4px solid var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .hero-img-accent img {
    aspect-ratio: 4/3;
  }

  .atm-img-3 {
    display: block;
  }

  .atm-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .atm-img-1 {
    grid-row: 1 / 3;
  }

  .atm-img-2 {
    grid-column: 2;
  }

  .atm-img-3 {
    grid-column: 2;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
