/* =========================================================
   عدسة شاهين | Shaheen Lens — Stylesheet
   Black & Gold photography studio theme
   ========================================================= */

:root {
  --black: #0a0a0b;
  --black-2: #131315;
  --black-3: #1c1c1f;
  --black-soft: #232326;
  --gold: #cda349;
  --gold-light: #f0d98c;
  --gold-dim: rgba(205, 163, 73, 0.14);
  --gold-border: rgba(205, 163, 73, 0.28);
  --text: #f5f1e6;
  --text-muted: #a8a49a;
  --text-faint: #726f68;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --font-display: "Playfair Display", "Cairo", serif;
  --font-body: "Cairo", "Inter", system-ui, sans-serif;
  color-scheme: dark;
}

/* ---------- Light theme ---------- */
:root[data-theme="light"] {
  --black: #faf7f2;
  --black-2: #f1ebdf;
  --black-3: #e8e0cf;
  --black-soft: #ddd3ba;
  --gold: #96702c;
  --gold-light: #b98935;
  --gold-dim: rgba(150, 112, 44, 0.1);
  --gold-border: rgba(150, 112, 44, 0.32);
  --text: #201c14;
  --text-muted: #5c5646;
  --text-faint: #8b8571;
  --shadow: 0 20px 50px rgba(80, 60, 20, 0.12);
  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  transition: background-color .35s ease, color .35s ease;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-soft); border: 2px solid var(--black); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* .eyebrow is the primary heading for a section (per client direction) —
   the small kicker-style label was promoted to the main title. .hero .eyebrow
   below restores the original small-label look just for the hero banner,
   where "استوديو تصوير احترافي" sits above the already-large hero-title. */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw + 20px, 56px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 16px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero .eyebrow::before, .hero .eyebrow::after { width: 24px; height: 1px; }
[dir="rtl"] .hero .eyebrow { letter-spacing: 1px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-title {
  font-family: var(--font-body);
  font-size: clamp(17px, 0.6vw + 15px, 21px);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.section-title strong, .accent { color: var(--gold); font-weight: 700; }
.section-sub { color: var(--text-muted); font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(205,163,73,.28); }
.btn-outline {
  border-color: var(--gold-border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold-light); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--gold-border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); }
.brand-tag { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color .25s, background .25s;
}
.nav a:hover, .nav a.active { color: var(--gold-light); background: var(--gold-dim); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .25s, border-color .25s;
}
.lang-switch:hover { background: var(--gold-dim); border-color: var(--gold); }

.theme-toggle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
}
.theme-toggle:hover { background: var(--gold-dim); border-color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); transition: all .3s var(--ease); }

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset-inline: 0;
    top: 0;
    height: 100vh;
    background: var(--black-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all .45s var(--ease);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { font-size: 20px; padding: 14px 20px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    radial-gradient(ellipse at top left, rgba(205,163,73,0.08), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(205,163,73,0.035) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 950px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 3.5vw + 24px, 80px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-desc { color: var(--text-muted); font-size: 18px; max-width: 480px; margin-bottom: 34px; }
@media (max-width: 950px) { .hero-desc { margin-inline: auto; } }

.hero-stats { display: flex; gap: 40px; margin-top: 56px; }
@media (max-width: 950px) { .hero-stats { justify-content: center; } }
.stat-num { font-family: var(--font-display); font-size: 32px; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 13px; color: var(--text-faint); margin-top: 4px; }

/* Placeholder image blocks (swap for real photos later) */
.ph-image {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  background:
    repeating-linear-gradient(135deg, var(--black-3) 0 14px, var(--black-soft) 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-faint);
}
.ph-image::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  inset-inline: 14px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-light);
  background: rgba(10,10,11,.75);
  padding: 6px 10px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid var(--gold-border);
}
.ph-image svg { width: 44px; height: 44px; opacity: .55; }
.ph-image.hero-ph { aspect-ratio: 4/5; box-shadow: var(--shadow); }

.hero-frame { position: relative; }
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 2px;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ---------- Clients strip (auto-scrolling marquee) ---------- */
.clients-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-strip {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 22px;
  animation: clients-scroll 36s linear infinite;
}
.clients-marquee:hover .clients-strip { animation-play-state: paused; }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-strip { animation: none; }
}
.client-logo { width: 190px; aspect-ratio: 2/1; border-radius: var(--radius); flex-shrink: 0; }
.client-logo svg { width: 28px; height: 28px; }

/* ---------- Inner page banner ---------- */
.page-banner {
  position: relative;
  padding: 170px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border-bottom: 1px solid var(--gold-border);
}
.page-banner h1 { font-family: var(--font-display); font-size: clamp(34px, 2.8vw + 22px, 60px); margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: var(--text-faint); font-size: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: var(--text-faint); }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); background: var(--black-3); }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.card-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.card-list li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.card-price { color: var(--gold-light); font-weight: 700; font-size: 15px; }
.card-link { color: var(--gold); font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Pricing packages ---------- */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card.popular { border-color: var(--gold); background: var(--black-3); }
@media (min-width: 901px) { .pricing-card.popular { transform: translateY(-10px); } }
.pricing-badge {
  position: absolute;
  top: -14px;
  inset-inline: 0;
  margin-inline: auto;
  width: fit-content;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 30px;
  white-space: nowrap;
}
.card-icon.pricing-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.pricing-price { font-family: var(--font-display); font-size: 38px; color: var(--gold); font-weight: 700; margin: 4px 0 22px; }
.pricing-price small { font-size: 15px; color: var(--text-muted); font-weight: 600; }
.pricing-list { flex: 1; }
.pricing-list li.excluded { opacity: .55; text-decoration: line-through; text-decoration-color: var(--text-faint); }
.pricing-list li.excluded svg { color: var(--text-faint); }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
}
.filter-btn:hover { color: var(--gold-light); }
.filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item {
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity .3s, transform .3s;
}
.portfolio-item.hidden-item { display: none; }
.portfolio-item .ph-image { aspect-ratio: 1/1; border-radius: var(--radius-lg); transition: transform .5s var(--ease); }
.portfolio-item:hover .ph-image { transform: scale(1.035); border-color: var(--gold); }
.portfolio-cat { font-size: 12px; color: var(--gold); letter-spacing: 1px; margin-top: 10px; }
.portfolio-name { font-weight: 700; font-size: 15px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,7,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 720px; width: 100%; text-align: center; }
.lightbox .ph-image { aspect-ratio: 4/3; border-radius: var(--radius-lg); margin-bottom: 18px; }
.lightbox-close {
  position: absolute;
  top: 26px;
  inset-inline-end: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--black-2);
  color: var(--gold-light);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .ph-image { aspect-ratio: 4/5; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 26px 16px; }
.value-item .card-icon { margin-inline: auto; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 34px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 9px;
  top: 26px; bottom: 0;
  width: 1px;
  background: var(--gold-border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--gold-dim); border: 2px solid var(--gold); flex-shrink: 0; margin-top: 4px; }
.timeline-year { color: var(--gold); font-weight: 700; font-size: 14px; margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(30px, 2.4vw + 18px, 52px); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); margin-bottom: 30px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item .card-icon { flex-shrink: 0; margin-bottom: 0; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--text); }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 14.5px; }
.contact-info-item a:hover { color: var(--gold-light); }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all .3s;
}
.social-icon:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.social-icon svg { width: 18px; height: 18px; }

.form-card { background: var(--black-2); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; color: var(--text-muted); margin-bottom: 8px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-faint); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin-bottom: 14px; }

.map-ph { aspect-ratio: 21/8; margin-top: 60px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--gold-border); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-desc { color: var(--text-muted); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.footer-title { font-size: 14px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 14.5px; transition: color .25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--gold-border); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--text-faint); font-size: 13.5px; }
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 500;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }
