/* ============================================================
   Manifest with Meenu Dugar — Landing Page
   Theme: Casual Light / Warm Cream & Sage
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --cream:       #fdf6ee;
  --cream-mid:   #f7ede0;
  --cream-deep:  #f0dfc9;
  --warm-white:  #fffbf6;
  --sage:        #6b8f6b;
  --sage-light:  #8aab8a;
  --sage-pale:   #e8f0e8;
  --crimson:     #a0292e;
  --crimson-soft:#c4484d;
  --gold:        #b8862a;
  --gold-light:  #e8c06a;
  --gold-pale:   #fdf0d0;
  --text-dark:   #2c1f16;
  --text-mid:    #5a4035;
  --text-soft:   #8a6b5a;
  --text-light:  #b89a88;
  --border:      rgba(184, 134, 42, 0.18);
  --shadow-sm:   0 2px 16px rgba(44, 31, 22, 0.07);
  --shadow-md:   0 8px 32px rgba(44, 31, 22, 0.11);
  --shadow-lg:   0 20px 60px rgba(44, 31, 22, 0.14);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Nunito', system-ui, sans-serif;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

em {
  font-style: italic;
  color: var(--crimson);
  font-family: var(--ff-display);
}

strong { font-weight: 700; }

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

/* === FLOATING PETALS === */
.petals-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.12;
  animation: petalDrift linear infinite;
  color: var(--gold);
}

.p1  { left: 5%;  top: -5%; animation-duration: 18s; animation-delay: 0s; }
.p2  { left: 20%; top: -5%; animation-duration: 24s; animation-delay: 3s; font-size:1rem; }
.p3  { left: 45%; top: -5%; animation-duration: 20s; animation-delay: 6s; }
.p4  { left: 65%; top: -5%; animation-duration: 22s; animation-delay: 2s; font-size:1.1rem; }
.p5  { left: 80%; top: -5%; animation-duration: 26s; animation-delay: 9s; }
.p6  { left: 92%; top: -5%; animation-duration: 19s; animation-delay: 4s; font-size:0.9rem; }

@keyframes petalDrift {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(105vh) rotate(360deg); opacity: 0; }
}

/* === NAVBAR === */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.top-nav.scrolled {
  background: rgba(253, 246, 238, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
}

.nav-logo img:hover { transform: scale(1.08) rotate(5deg); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--crimson);
  background: rgba(160, 41, 46, 0.06);
}

.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(160, 41, 46, 0.28);
}

.nav-cta:hover {
  background: var(--crimson-soft) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 41, 46, 0.35) !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
  gap: 0.1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-mid);
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--crimson); background: rgba(160,41,46,0.05); padding-left: 1rem; }

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

@media (max-width: 768px) {
  .nav-links   { display: none; }
  .nav-burger  { display: block; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 192, 106, 0.22) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(107, 143, 107, 0.1) 0%, transparent 50%),
              var(--warm-white);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.g1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 192, 106, 0.25) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  animation: glowPulse 6s ease-in-out infinite;
}

.g2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(107, 143, 107, 0.15) 0%, transparent 70%);
  bottom: 0; right: 5%;
  animation: glowPulse 8s ease-in-out infinite 2s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-logo {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  animation: floatLogo 5s ease-in-out infinite;
}

.logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--cream), var(--cream)) padding-box,
              linear-gradient(135deg, var(--gold-light), var(--sage-light), var(--gold-light)) border-box;
  animation: ringRotate 6s linear infinite;
}

.r2 {
  inset: -16px;
  border-width: 1px;
  opacity: 0.4;
  animation-duration: 10s;
  animation-direction: reverse;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-tag {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(184, 134, 42, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--crimson);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(160, 41, 46, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.btn-warm:hover {
  background: var(--crimson-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(160, 41, 46, 0.38);
  color: #fff;
}

.btn-sm { font-size: 0.88rem; padding: 0.6rem 1.4rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text-mid);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--crimson);
  border-color: rgba(160, 41, 46, 0.3);
  background: rgba(160, 41, 46, 0.04);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

.hero-scroll i {
  font-size: 0.9rem;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* === ORNAMENTAL DIVIDER === */
.orn-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
  color: var(--gold-light);
  font-size: 0.85rem;
}

.orn-divider .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* === SECTION BASE === */
.section { padding: 6rem 1.5rem; position: relative; z-index: 1; }

.section-warm {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--warm-white) 100%);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--sage-pale);
  border: 1px solid rgba(107, 143, 107, 0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-sub { margin: 0 auto; }

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

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-logo-frame {
  position: relative;
  display: inline-block;
}

.about-logo-frame img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.frame-corner {
  position: absolute;
  width: 32px;
  height: 32px;
}

.fc-tl {
  top: -8px; left: -8px;
  border-top: 2.5px solid var(--gold);
  border-left: 2.5px solid var(--gold);
  border-radius: 4px 0 0 0;
}

.fc-br {
  bottom: -8px; right: -8px;
  border-bottom: 2.5px solid var(--gold);
  border-right: 2.5px solid var(--gold);
  border-radius: 0 0 4px 0;
}

.about-quote-chip {
  margin-top: 1.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(184, 134, 42, 0.2);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-mid);
  font-style: italic;
}

.about-text-col p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.about-tags span {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

/* === MAGIC QUOTE === */
.magic-quote {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold-light);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
  opacity: 0.6;
}

.magic-quote p {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: 0.04em;
}

/* === PRACTICES GRID === */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.practice-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  transition-delay: var(--delay, 0ms);
  position: relative;
  overflow: hidden;
}

.practice-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transition: width 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 42, 0.3);
}

.practice-card:hover::after { width: 100%; }

.practice-icon { font-size: 2rem; margin-bottom: 1rem; }

.practice-card h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* === SCROLL STRIP === */
.scroll-strip {
  background: var(--crimson);
  padding: 0.85rem 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: stripScroll 22s linear infinite;
}

.strip-track span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip-track .dot {
  color: rgba(255,255,255,0.4);
  font-size: 0.5rem;
  align-self: center;
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === PROMISE LIST === */
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.promise-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  transition: var(--transition);
  transition-delay: var(--delay, 0ms);
}

.promise-item:hover {
  transform: translateX(6px);
  border-color: rgba(184, 134, 42, 0.3);
  box-shadow: var(--shadow-sm);
}

.promise-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.promise-body h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.promise-body p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.75;
}

/* === COMMUNITY CTA === */
.community-cta {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--sage-pale) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-logo {
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.community-cta h3 {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.community-cta p {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto 1.8rem;
  line-height: 1.8;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  transition-delay: var(--delay, 0ms);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 42, 0.3);
}

.contact-card-main {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: transparent;
}

.contact-card-main h5,
.contact-card-main p,
.contact-card-main .contact-link-text { color: #fff !important; }

.contact-card-main .contact-note { color: rgba(255,255,255,0.8) !important; }

.contact-card-main .contact-icon-wrap { background: rgba(255,255,255,0.2) !important; color: #fff !important; }

.contact-card-main .btn-warm {
  background: #fff;
  color: #128C7E;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.contact-card-main .btn-warm:hover {
  background: #f0fdf4;
  color: #0a6659;
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(184, 134, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1.2rem;
}

.wa-icon { background: rgba(255,255,255,0.2) !important; }

.heart-icon {
  background: rgba(160, 41, 46, 0.08) !important;
  color: var(--crimson) !important;
  border-color: rgba(160, 41, 46, 0.15) !important;
}

.contact-card h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 0.4rem;
  transition: var(--transition);
}

.contact-link:hover { color: var(--crimson-soft); }

.contact-link-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.contact-note {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.mt-3 { margin-top: 1rem !important; }

/* === FOOTER === */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-row img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}

.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

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

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

.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-row a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

/* === REVEAL ANIMATIONS === */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.revealed {
  opacity: 1;
  transform: none;
}
