/* ========================================
  NEW NOBLE NAILS & SPA
  Warm Cream + Champagne Gold
  ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --bg: #FAF8F6;
  --bg-alt: #FFFFFF;
  --cream-band: #F3EFEA;
  --surface: rgba(120, 110, 100, 0.05);
  --border: rgba(17, 24, 39, 0.10);
  --text: #1F1F1F;
  --text-muted: #5F5A55;
  
  /* Accents */
  --gold: #D4AF7A;
  --gold-deep: #C69B63;
  --blush: #E8B6C3;
  --violet: #B9A6E6;
  --violet-glow: rgba(185, 166, 230, 0.25);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: 1120px;
  --container-padding: clamp(1.25rem, 5vw, 2rem);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.5s ease;
  --transition-soft: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  font-weight: 400;
}

/* Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 248, 246, 0.9) 100%);
  pointer-events: none;
  z-index: -1;
}

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

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

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

/* Focus States */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6B625B;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1F1F1F;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF7A 0%, #C69B63 100%);
  color: #1F1F1F;
  box-shadow: 0 12px 32px rgba(212, 175, 122, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(212, 175, 122, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::after {
  opacity: 0.7;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--violet);
  background: rgba(212, 175, 122, 0.12);
  box-shadow: 0 0 0 3px var(--violet-glow);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

.btn-hero {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 48px;
}

/* ========================================
   NAV
   ======================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.75rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  display: block;
  height: 128px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-deep);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--gold);
  color: #1F1F1F;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-deep);
  box-shadow: 0 10px 24px rgba(212, 175, 122, 0.25), 0 0 0 3px var(--violet-glow);
}

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

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem var(--container-padding);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
  }
  
  .nav-logo {
    height: 40px;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-link, .nav-cta {
    display: block;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-cta {
    margin-top: 0.75rem;
    padding: 0.875rem 1.25rem;
  }
  
  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ========================================
   HERO
   ======================================== */

.hero {
  padding: clamp(5rem, 14vw, 10rem) 0;
  overflow: visible;
  position: relative;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    url('assets/softBackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-content {
  max-width: 640px;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #5F5A55;
  margin-bottom: 1.25rem;
}

.hero-support {
  font-size: 1rem;
  color: #1F1F1F;
  margin-bottom: 2.25rem;
}

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

@media (max-width: 900px) {
  .hero-container {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* ========================================
   TRUST STRIP
   ======================================== */

.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.5rem 24px;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: linear-gradient(180deg, rgba(212, 175, 122, 0.6), rgba(185, 166, 230, 0.6));
}

@media (max-width: 600px) {
  .trust-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .trust-divider {
    display: none;
  }
}

/* ========================================
   SECTIONS (GENERAL)
   ======================================== */

.section {
  padding: var(--section-padding) 0;
}

.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-headline {
  margin-bottom: 1.25rem;
}

.section-subtext {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(120, 110, 100, 0.12);
  border-radius: 18px;
  padding: 2rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.06);
}

.service-card:hover {
  border-color: rgba(212, 175, 122, 0.5);
  box-shadow: 0 14px 36px rgba(31, 31, 31, 0.08);
  transform: translateY(-4px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(212, 175, 122, 0.6);
  border-radius: 999px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(120, 110, 100, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--gold-deep);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-addon {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.25rem 0.625rem;
  background: rgba(120, 110, 100, 0.1);
  border-radius: 6px;
}

.pricing-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 1rem;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
  background: var(--bg-alt);
  position: relative;
}

.floral-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  color: rgba(212, 175, 122, 0.5);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.floral-divider svg {
  width: min(300px, 60%);
  height: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold-deep);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   SALON SECTION
   ======================================== */

.salon-section {
  background: var(--bg);
}

.salon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.salon-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid rgba(120, 110, 100, 0.08);
  box-shadow: 0 6px 16px rgba(31, 31, 31, 0.04);
}

@media (max-width: 900px) {
  .salon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .salon-grid {
    grid-template-columns: 1fr;
  }
}

.salon-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews-section {
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('assets/o-3.jpg') center/cover no-repeat;
  filter: grayscale(0.6);
  opacity: 0.7;
}

.reviews-section .section-container {
  position: relative;
  z-index: 1;
}

.reviews-slider {
  position: relative;
  margin-bottom: 2rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-smooth);
}

.review-card {
  flex: 0 0 340px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(120, 110, 100, 0.12);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.08);
}

.review-quote-mark {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 5rem;
  color: rgba(212, 175, 122, 0.18);
  line-height: 1;
  pointer-events: none;
}

.review-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.review-stars {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  opacity: 0.85;
  margin: 0.25rem 0 0.75rem;
}

.review-author {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.review-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.review-btn:hover {
  background: rgba(212, 175, 122, 0.2);
  border-color: rgba(212, 175, 122, 0.5);
  box-shadow: 0 0 0 3px var(--violet-glow);
}

.review-btn svg {
  width: 20px;
  height: 20px;
}

.feedback-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .reviews-track {
    flex-direction: column;
    gap: 1rem;
  }
  
  .review-card {
    flex: none;
    width: 100%;
  }
  
  .reviews-controls {
    display: none;
  }
}

/* ========================================
   TEAM
   ======================================== */

.team-section {
  background: var(--bg);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.team-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 122, 0.4);
  border-radius: 60px;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  transition: all var(--transition-fast);
}

.team-chip:hover {
  border-color: rgba(212, 175, 122, 0.7);
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.08);
}

.team-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 248, 246, 0.9);
  color: var(--text);
  font-weight: 600;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(212, 175, 122, 0.4);
}

.team-sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  right: -2px;
  top: -2px;
  color: var(--gold);
  opacity: 0.8;
}

.team-info {
  display: flex;
  flex-direction: column;
}

.team-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.team-specialty {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   IMAGE BAND
   ======================================== */

.image-band {
  padding: 0;
  background: var(--bg);
}

.image-band-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) * 0.75);
}

.image-band-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(31, 31, 31, 0.08);
  aspect-ratio: 3 / 2;
}

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

@media (max-width: 768px) {
  .image-band-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ========================================
   VISIT / CONTACT
   ======================================== */

.visit-section {
  background: var(--bg-alt);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.visit-card {
  background: var(--surface);
  border: 1px solid rgba(120, 110, 100, 0.12);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.06);
  position: relative;
}

.visit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(212, 175, 122, 0.6);
  border-radius: 999px;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.walkin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #1F1F1F;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.4), rgba(232, 182, 195, 0.35));
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 122, 0.4);
}

.walkin-badge svg {
  width: 18px;
  height: 18px;
}

.visit-card-title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visit-card-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
}

.hours-table td:first-child {
  color: var(--text-muted);
}

.hours-table td:last-child {
  text-align: right;
}

.address-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.address-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.footer-name {
  font-size: 1rem;
  font-weight: 600;
}

.footer-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-phone {
  font-size: 0.875rem;
  color: var(--gold-deep);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-soft), transform var(--transition-soft);
}

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

/* Reduced Motion */
.reduced-motion .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Stagger delays for grouped elements */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.why-grid .why-item:nth-child(1) { transition-delay: 0s; }
.why-grid .why-item:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-item:nth-child(3) { transition-delay: 0.2s; }

.team-grid .team-chip:nth-child(1) { transition-delay: 0s; }
.team-grid .team-chip:nth-child(2) { transition-delay: 0.1s; }
.team-grid .team-chip:nth-child(3) { transition-delay: 0.2s; }
.team-grid .team-chip:nth-child(4) { transition-delay: 0.3s; }

.trust-container .trust-item:nth-child(1) { transition-delay: 0s; }
.trust-container .trust-item:nth-child(2) { transition-delay: 0.1s; }
.trust-container .trust-item:nth-child(3) { transition-delay: 0.2s; }

.visit-grid .visit-card:nth-child(1) { transition-delay: 0s; }
.visit-grid .visit-card:nth-child(2) { transition-delay: 0.1s; }
.visit-grid .visit-card:nth-child(3) { transition-delay: 0.2s; }
