/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --gold-light: #E8D5B7;
  --gold:       #C4A97D;
  --gold-dark:  #9C8468;
  --sage:       #6B9E8E;
  --sage-dark:  #4A7B6F;
  --brown:      #5C4A3A;
  --text:       #2E2E2E;
  --text-light: #6B6B6B;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --radius:     12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  line-height: 1.3;
}

.section-label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--white); }

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-light);
  transition: box-shadow var(--transition);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--brown);
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--sage-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gold-light);
  background: var(--cream);
}

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

.nav-mobile a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gold-light);
}

.nav-mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO
============================================================ */
#accueil {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #F5EFE6 0%, #EDE3D5 40%, #D8CEBC 100%);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

#accueil::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 158, 142, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

#accueil::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 169, 125, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(107, 158, 142, 0.12);
  border: 1px solid rgba(107, 158, 142, 0.3);
  border-radius: 30px;
  padding: 0.3rem 0.85rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 460px;
  line-height: 1.75;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: rgba(107, 158, 142, 0.1);
  border: 1px solid rgba(107, 158, 142, 0.25);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 0.85rem 1.8rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 158, 142, 0.4);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 158, 142, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrapper {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(156, 132, 104, 0.35);
  position: relative;
  flex-shrink: 0;
}

.hero-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(196, 169, 125, 0.4);
  pointer-events: none;
  z-index: 1;
}

.hero-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(196, 169, 125, 0.2);
  pointer-events: none;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-text .zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: rgba(107, 158, 142, 0.1);
  border: 1px solid rgba(107, 158, 142, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  margin-top: 0.5rem;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

.about-card:hover { box-shadow: var(--shadow); }

.about-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-card h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  margin: 1rem auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-emoji { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1.2rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-light);
}

.service-duration {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-price {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--sage-dark);
}

/* ============================================================
   TARIFS
============================================================ */
.tarifs-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
}

.tarifs-category {
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage));
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tarifs-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gold-light);
  transition: background var(--transition);
}

.tarifs-row:last-child { border-bottom: none; }
.tarifs-row:hover { background: var(--cream); }

.tarifs-row-name { font-size: 0.95rem; color: var(--text); }
.tarifs-row-note { font-size: 0.8rem; color: var(--text-light); }

.tarifs-row-duration {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
  text-align: right;
}

.tarifs-row-price {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--sage-dark);
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}

.tarifs-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(107, 158, 142, 0.1);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  border-radius: 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  margin-top: 0.25rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--brown);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  color: var(--text-light);
  border-top: 1px solid var(--gold-light);
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown);
  margin-bottom: 1.2rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.contact-link:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
  transform: translateX(4px);
  color: var(--sage-dark);
}

.contact-link-icon {
  font-size: 1.3rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.contact-calendly {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-calendly h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.calendly-intro {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.calendly-btn {
  font-size: 0.95rem;
  padding: 1rem 2.2rem;
  margin-bottom: 1.8rem;
}

.calendly-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.calendly-note a {
  color: var(--sage-dark);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-top: 0.8rem;
  max-width: 300px;
}

.footer-brand-name {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer-brand-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer-col ul li a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   SCROLL TOP
============================================================ */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 99;
}

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

#scrollTop:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-photo-wrapper { width: 240px; height: 240px; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-location { margin-left: auto; margin-right: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .tarifs-row { grid-template-columns: 1fr auto; }
  .tarifs-row-duration { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   CALENDLY POPIN
============================================================ */
.agenda-popin {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.agenda-popin.open {
  opacity: 1;
  pointer-events: all;
}

.agenda-popin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 35, 25, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.agenda-popin-box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  height: 90vh;
  max-height: 760px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.agenda-popin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--gold-light);
  background: var(--cream);
  flex-shrink: 0;
}

.agenda-popin-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--brown);
}

.agenda-popin-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

.agenda-popin-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--brown);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.agenda-popin-close:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.agenda-popin-content {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.agenda-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .agenda-popin {
    align-items: flex-end;
    padding: 0;
  }
  .agenda-popin-box {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }
}

/* ============================================================
   ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
