*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --charcoal-mid: #3a3a55;
  --coral: #FF6B4A;
  --coral-light: #FF8A70;
  --coral-dark: #E8553A;
  --coral-glow: rgba(255, 107, 74, 0.15);
  --white: #ffffff;
  --off-white: #f8f7f5;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --gray-700: #2d2d2d;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 8px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 8px 6px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 4px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 2px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-menu a:hover {
  color: var(--charcoal);
}
.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.8125rem;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 36px;
  height: 36px;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background: var(--charcoal);
  box-shadow: 0 -6px 0 var(--charcoal), 0 6px 0 var(--charcoal);
  transition: box-shadow var(--transition), transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.nav-toggle[aria-expanded="true"] .hamburger {
  box-shadow: 0 0 0 transparent, 0 0 0 transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  transform: rotate(-90deg);
  transform-origin: center;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--charcoal-light) 35%,
    var(--coral-dark) 70%,
    var(--coral) 100%
  );
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(255, 107, 74, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(26, 26, 46, 0.5) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral-light);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 74, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 40px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.service-card:hover {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--coral);
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── WHY ─── */
.why {
  padding: 120px 0;
  background: var(--off-white);
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6/7;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-content .section-lead {
  margin-bottom: 36px;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--coral-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--coral);
}
.check svg {
  width: 12px;
  height: 12px;
}
.why-list strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: 4px;
}
.why-list span {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── PROCESS ─── */
.process {
  padding: 120px 0;
  background: var(--white);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gray-300), var(--coral), var(--gray-300));
  margin-top: 40px;
  position: relative;
}
.step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 120px 0;
  background: var(--charcoal);
}
.testimonials .section-eyebrow {
  color: var(--coral-light);
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--charcoal-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: rgba(255, 107, 74, 0.3);
  transform: translateY(-4px);
}
.quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 32px;
  height: 32px;
  color: var(--coral);
  opacity: 0.3;
}
.testimonial p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

/* ─── LOCATION ─── */
.location {
  padding: 120px 0;
  background: var(--off-white);
}
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-details {
  font-style: normal;
  margin-bottom: 36px;
}
.location-details p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.location-details a {
  color: var(--coral);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.location-details a:hover {
  color: var(--coral-dark);
}
.hours h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: var(--gray-500);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.hours li span:last-child {
  font-weight: 500;
  color: var(--charcoal);
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-direct {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.contact-item a {
  color: var(--gray-600);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--coral);
}
.contact-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--coral-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

/* Form */
.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--coral);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-contact a:hover {
  color: var(--coral);
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
  .nav-menu a::after {
    display: none;
  }
  .nav-cta {
    display: inline-block;
    margin-top: 16px;
    text-align: center;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-num {
    font-size: 1.375rem;
  }
  .why-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-image {
    aspect-ratio: 4/3;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step {
    max-width: 100%;
    padding: 24px 0;
  }
  .step-connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--gray-300), var(--coral), var(--gray-300));
  }
  .step-connector::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .testimonial:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  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);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
