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

:root {
  --teal-900: #0a5c5f;
  --teal-700: #0D7377;
  --teal-600: #118a8e;
  --teal-500: #14a3a8;
  --teal-100: #e0f2f2;
  --teal-50: #f0f9f9;
  --slate-900: #1a1d23;
  --slate-800: #2a2d35;
  --slate-700: #3a3d45;
  --slate-600: #4a4d55;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-300: #d1d5db;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --slate-50: #f9fafb;
  --white: #ffffff;
  --cream: #fafbfb;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 29, 35, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 29, 35, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 29, 35, 0.16);
}

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

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-900);
}

/* ===== Section Eyebrow ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-sm);
}

/* ===== Section Title ===== */
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-md);
}

.section-title-accent {
  color: var(--teal-700);
  font-style: italic;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.3);
}

.btn-primary:hover {
  background: var(--teal-600);
  box-shadow: 0 4px 16px rgba(13, 115, 119, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.btn-light {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 var(--space-2xl);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-900);
}

.nav-logo-mark {
  color: var(--teal-700);
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal-700);
}

.nav-cta {
  background: var(--teal-700);
  color: var(--white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--teal-600);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate-800);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--slate-200);
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--teal-700);
}

.mobile-menu-cta {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal-700);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 70% 20%, rgba(13, 115, 119, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(13, 115, 119, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-3xl);
  }
}

/* Hero Text */
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-headline-accent {
  color: var(--teal-700);
  font-style: italic;
}

.hero-subheadline {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

.hero-trust-item svg {
  color: var(--teal-700);
  flex-shrink: 0;
}

/* Hero Image */
.hero-image-col {
  position: relative;
}

.hero-image-stack {
  position: relative;
}

.hero-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

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

.hero-image-accent {
  position: absolute;
  bottom: -40px;
  left: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
  max-width: 260px;
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--teal-700);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.3;
}

@media (max-width: 1023px) {
  .hero-image-accent,
  .hero-image-badge {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-image-accent {
    bottom: -50px;
    left: -40px;
    max-width: 280px;
  }
  .hero-image-badge {
    top: -30px;
    right: -30px;
  }
}

/* ===== Section Divider ===== */
.section-divider {
  background: var(--teal-700);
}

/* ===== Services ===== */
.services {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.services-header {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--teal-700);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  color: var(--teal-700);
  margin-bottom: var(--space-md);
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--teal-700);
  color: var(--white);
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-serif);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ===== About ===== */
.about {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

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

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

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

.about-image-quote {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--teal-700);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.about-image-quote svg {
  opacity: 0.4;
  margin-bottom: var(--space-xs);
}

.about-image-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .about-image-quote {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-md);
  }
}

.about-text-col .section-eyebrow {
  margin-bottom: var(--space-xs);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-body p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-value {
  padding: var(--space-md);
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal-700);
}

.about-value-num {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-700);
  display: block;
  margin-bottom: 0.25rem;
}

.about-value-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}

.about-value-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.55;
}

/* ===== Patient Info ===== */
.patient-info {
  padding: var(--space-4xl) 0;
  background: var(--slate-900);
  color: var(--white);
}

.patient-info-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.patient-info-header .section-eyebrow {
  color: var(--teal-500);
}

.patient-info-header .section-title {
  color: var(--white);
}

.patient-info-header .section-title-accent {
  color: var(--teal-400);
}

.patient-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .patient-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .patient-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-step {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.info-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(13, 115, 119, 0.5);
  transform: translateY(-2px);
}

.info-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal-500);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.info-step-title {
  font-size: 1.1875rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
  font-family: var(--font-serif);
}

.info-step-desc {
  font-size: 0.9375rem;
  color: var(--slate-400);
  line-height: 1.65;
}

.patient-info-banner {
  background: var(--teal-700);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

@media (min-width: 768px) {
  .patient-info-banner {
    padding: var(--space-2xl);
  }
}

.patient-info-banner-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .patient-info-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.patient-info-banner-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
}

.patient-info-banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* ===== Contact ===== */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.contact-info-col .section-eyebrow {
  margin-bottom: var(--space-xs);
}

.contact-intro {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  color: var(--teal-700);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.125rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--teal-700);
  transition: color 0.2s ease;
}

.contact-detail-value a:hover {
  color: var(--teal-600);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

@media (min-width: 640px) {
  .contact-form {
    padding: var(--space-xl);
  }
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.375rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-700);
}

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

.form-success svg {
  flex-shrink: 0;
  color: var(--teal-700);
}

/* ===== Map ===== */
.map-section {
  border-top: 1px solid var(--slate-200);
}

.map-container {
  filter: saturate(0.7) contrast(1.05);
}

/* ===== Footer ===== */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
  }
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-logo-mark {
  color: var(--teal-500);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-400);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: var(--space-sm);
}

.footer-link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-col a,
.footer-link-col span {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color 0.2s ease;
}

.footer-link-col a:hover {
  color: var(--teal-500);
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  font-size: 0.875rem;
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--slate-600);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
