/* ============================================================
   JCR ADVOGADOS ASSOCIADOS — Design System
   Paleta: Ouro #C9A84C · Bronze #8B5A2B · Marrom #3A1F0D
   Fundo: Preto Grafite #0D0D0D
   Tipografia: Cormorant Garamond (principal) · Inter (apoio)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dark:    #A07830;
  --bronze:       #8B5A2B;
  --brown-dark:   #3A1F0D;
  --brown-deep:   #1E0F05;
  --graphite:     #0D0D0D;
  --graphite-mid: #141414;
  --graphite-2:   #1C1C1C;
  --graphite-3:   #252525;
  --graphite-4:   #2E2E2E;
  --text-primary: #F0E6D0;
  --text-muted:   #9E8C72;
  --text-dim:     #5A4E3E;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'system-ui', sans-serif;

  --ease-gold: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast: 150ms;
  --dur-normal: 280ms;

  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C96A 40%, #A07830 70%, #C9A84C 100%);
  --gold-line:     linear-gradient(90deg, transparent, #C9A84C, transparent);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--graphite);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: var(--graphite);
}

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

/* ── ORNAMENTAL DIVIDER ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 320px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}
.ornament-divider span {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-line);
  opacity: 0.5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo a { display: flex; align-items: center; text-decoration: none; }

.navbar-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* Logo has white bg so we mix-blend it away */
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.25));
  transition: filter var(--dur-normal) var(--ease-gold),
              transform var(--dur-normal) var(--ease-gold);
}
.navbar-logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.55));
  transform: scale(1.04);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: color var(--dur-fast) var(--ease-gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--dur-normal) var(--ease-gold);
}
.nav-link:hover {
  color: var(--gold-light);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* ── MOBILE MENU BUTTON ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.25);
  cursor: pointer;
  padding: 0.5rem 0.6rem;
  gap: 5px;
  border-radius: 2px;
  z-index: 1001;
  transition: border-color var(--dur-fast);
}
.mobile-menu-btn:hover { border-color: var(--gold); }
.mobile-menu-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  display: block;
  transition: all var(--dur-normal) var(--ease-gold);
  border-radius: 1px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── MOBILE OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-normal);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* ── MOBILE NAV PANEL ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--graphite-mid);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 1000;
  transition: right var(--dur-normal) var(--ease-gold);
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { right: 0; }

.mobile-nav-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
}
.mobile-navbar-logo { height: 44px; width: auto; object-fit: contain; }

.mobile-nav-links { flex: 1; padding: 1rem 0; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--dur-fast);
  border-left: 2px solid transparent;
}
.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  border-left-color: var(--gold);
}
.mobile-nav-link svg { width: 1rem; height: 1rem; }

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--gold-gradient);
  color: var(--graphite);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity var(--dur-fast);
  margin-bottom: 1rem;
}
.mobile-btn-whatsapp:hover { opacity: 0.88; }
.mobile-btn-whatsapp svg { width: 1.1rem; height: 1.1rem; }

.mobile-contact-info {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mobile-contact-info a {
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}
.mobile-contact-info p { color: var(--text-dim); }

/* ============================================================
   HERO — FULL-WIDTH BANNER
   ============================================================ */
.hero {
  margin-top: 72px;
  width: 100%;
  display: block;
  line-height: 0;
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* gold rule under section titles */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.25rem auto 0;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas {
  padding: 5rem 0;
  background: var(--graphite);
  position: relative;
}

/* subtle grid texture */
.areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.1);
}

/* ── CARDS — sem background image ── */
.card,
.card2,
.card3 {
  background: var(--graphite-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background var(--dur-normal) var(--ease-gold);
  overflow: hidden;
}

.card::before,
.card2::before,
.card3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-gold);
}

.card:hover,
.card2:hover,
.card3:hover {
  background: var(--graphite-3);
}

.card:hover::before,
.card2:hover::before,
.card3:hover::before {
  transform: scaleX(1);
}

/* card corner ornament */
.card::after,
.card2::after,
.card3::after {
  content: '';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: border-color var(--dur-normal);
}

.card:hover::after,
.card2:hover::after,
.card3:hover::after {
  border-color: rgba(201, 168, 76, 0.4);
}

.card-header { margin-bottom: 1.5rem; }

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.card:hover .card-icon-wrap,
.card2:hover .card-icon-wrap,
.card3:hover .card-icon-wrap {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.card-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--gold);
}

.card-ref {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.card-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-divider {
  width: 32px;
  height: 1px;
  background: rgba(201, 168, 76, 0.35);
  margin: 1.25rem 0;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.7rem;
}

/* ============================================================
   SOBRE / ABOUT
   ============================================================ */
.about {
  padding: 5rem 0;
  background: var(--graphite-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

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

.about-content {}

.about-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.stat-item {
  background: var(--graphite-2);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background var(--dur-fast);
}
.stat-item:hover { background: var(--graphite-3); }

.stat-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* gold frame around photo */
.about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.office-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact {
  padding: 5rem 0;
  background: var(--graphite);
}

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

.contact-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-value {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  text-decoration: none;
}
.contact-value:hover { color: var(--gold); }

/* WhatsApp Card */
.whatsapp-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-card {
  background: var(--graphite-2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
}

/* corner ornaments on whatsapp card */
.whatsapp-card::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-left: 1px solid rgba(201, 168, 76, 0.35);
}
.whatsapp-card::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  border-right: 1px solid rgba(201, 168, 76, 0.35);
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(201, 168, 76, 0.08);
}

.whatsapp-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
}

.whatsapp-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.whatsapp-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--gold-gradient);
  color: var(--graphite);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-whatsapp svg { width: 1rem; height: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--graphite);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--dur-fast);
}
.footer-link:hover { color: var(--gold); }

.footer-contact {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.85;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON — dourado / gold
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--graphite);
  box-shadow:
    0 4px 20px rgba(201, 168, 76, 0.4),
    0 0 0 0 rgba(201, 168, 76, 0.3);
  transition: transform var(--dur-normal) var(--ease-gold),
              box-shadow var(--dur-normal) var(--ease-gold);
  animation: pulseGold 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 32px rgba(201, 168, 76, 0.6),
    0 0 0 8px rgba(201, 168, 76, 0.1);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--brown-deep);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal);
  font-family: var(--font-body);
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4), 0 0 0 0 rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 4px 28px rgba(201, 168, 76, 0.55), 0 0 0 10px rgba(201, 168, 76, 0.08);
  }
}

/* ============================================================
   BUTTONS GENERIC
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-gold);
  font-family: var(--font-body);
}

.btn-icon { width: 1rem; height: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SMOOTH SCROLL
   ============================================================ */
html { scroll-behavior: smooth; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { justify-content: center; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { margin-top: 68px; }

  .header-content { min-height: 64px; }
  .navbar-logo-img { height: 48px; }

  .areas-grid { grid-template-columns: 1fr; gap: 1px; }

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

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

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

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { margin-top: 60px; }
  .section-title { font-size: 1.75rem; }
  .card, .card2, .card3 { padding: 2rem 1.5rem; }
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card, .card2, .card3 { animation: fadeUp 0.6s var(--ease-gold) both; }
.card2 { animation-delay: 0.1s; }
.card3 { animation-delay: 0.2s; }