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

:root {
  --bg: #0A0604;
  --bg2: #110A05;
  --bg3: #18100A;
  --gold: #C8956B;
  --gold-light: #E8B88A;
  --gold-dim: rgba(200,149,107,0.15);
  --white: #F5EFE8;
  --white-dim: rgba(245,239,232,0.55);
  --white-faint: rgba(245,239,232,0.12);
  --border: rgba(200,149,107,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Cairo', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: none;
  direction: rtl;
}

body.lang-en { direction: ltr; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  mix-blend-mode: exclusion;
}

.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,149,107,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease2), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-follower { width: 52px; height: 52px; border-color: var(--gold); }

@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(10,6,4,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav__logo-en { display: none; }
.lang-en .nav__logo-ar { display: none; }
.lang-en .nav__logo-en { display: inline; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: right;
}

.lang-en .nav__links a::after { transform-origin: left; }

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  cursor: none;
  transition: background 0.3s, color 0.3s;
}

.lang-toggle:hover { background: var(--gold-dim); }

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}

.nav__menu-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav__menu-btn { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw; height: 100vh;
    background: var(--bg2);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--border);
  }
  .lang-en .nav__links { right: auto; left: -100%; border-left: none; border-right: 1px solid var(--border); }
  .nav__links.open { right: 0; }
  .lang-en .nav__links.open { right: auto; left: 0; }
  .nav__links a { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #8B4A20 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3D1E0F 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatOrb 14s ease-in-out infinite alternate-reverse;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 20px) scale(1.08); }
}

/* ── Coffee Bean ── */
.coffee-bean {
  position: fixed;
  right: 5vw;
  top: 30vh;
  width: 48px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  will-change: transform;
}

.coffee-bean.visible { opacity: 1; }
.lang-en .coffee-bean { right: auto; left: 5vw; }

@media (max-width: 768px) {
  .coffee-bean { width: 32px; right: 3vw; }
  .lang-en .coffee-bean { right: auto; left: 3vw; }
}

/* ── Hero Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 2.5rem 4rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.hero__tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero__name-main {
  display: block;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero__sub--gold { color: var(--gold); font-weight: 400; animation-delay: 0.75s; }

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.6s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3) translateY(20px); opacity: 0.3; }
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .hero__content { padding: 7rem 1.5rem 4rem; }
  .hero__cta { flex-direction: column; }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  transition: all 0.35s var(--ease);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  border-radius: inherit;
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--gold);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,149,107,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--large { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
section { position: relative; }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  vertical-align: super;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats { padding: 3rem 1.5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section {
  padding: 7rem 2.5rem;
  background: var(--bg);
}

.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-section__body {
  color: var(--white-dim);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.about-section__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.08em;
  transition: background 0.3s, border-color 0.3s;
}

.skill-pill:hover { background: var(--gold-dim); border-color: var(--gold); }

/* Portrait */
.about-section__portrait {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.about-section__portrait-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portrait-placeholder svg { width: 80%; }

.portrait-placeholder__text {
  position: absolute;
  bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.about-section__portrait-ring {
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  top: -8px; right: -8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}

.about-section__portrait-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px; right: -5px;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

@media (max-width: 900px) {
  .about-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-section { padding: 5rem 1.5rem; }
  .about-section__visual { order: -1; }
}

/* ══════════════════════════════════════════
   WORK
══════════════════════════════════════════ */
.work {
  padding: 7rem 2.5rem;
  background: var(--bg2);
}

.work__header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.work__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
  cursor: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,149,107,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.project-card--wide { grid-column: span 2; }

.project-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.project-card--wide .project-card__img { height: 240px; }

.project-card__img--1 { background: linear-gradient(135deg, #1A0E07 0%, #3D1E0F 50%, #8B4A20 100%); }
.project-card__img--2 { background: linear-gradient(135deg, #07100A 0%, #0F3D1E 50%, #20894A 100%); }
.project-card__img--3 { background: linear-gradient(135deg, #070A1A 0%, #0F1E3D 50%, #203A89 100%); }
.project-card__img--4 { background: linear-gradient(135deg, #1A1A07 0%, #3D3D0F 50%, #89891F 100%); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,4,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  transition: background 0.4s;
}

.project-card:hover .project-card__overlay { background: linear-gradient(to top, rgba(10,6,4,0.5) 0%, transparent 60%); }

.project-card__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.project-card__info { padding: 1.5rem; }

.project-card__cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin: 0.5rem 0 0.6rem;
  line-height: 1.3;
}

.project-card__desc {
  font-size: 0.83rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-card__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: letter-spacing 0.3s;
}

.project-card__link:hover { letter-spacing: 0.18em; }

@media (max-width: 900px) {
  .work { padding: 5rem 1.5rem; }
  .work__grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: span 1; }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 7rem 2.5rem;
  background: var(--bg);
}

.services__header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.services__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.4s var(--ease);
  cursor: default;
}

.service-item:hover { background: var(--bg2); }

.service-item__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.service-item__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-item__content p {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .services { padding: 5rem 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-item { margin: -1px 0 0; }
}

/* ══════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════ */
.testimonial {
  padding: 6rem 2.5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial__footer { margin-top: 1.5rem; }

.testimonial__name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  padding: 8rem 2.5rem;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact__inner { position: relative; z-index: 2; }

.contact .section-heading { margin: 0 auto 1.5rem; }

.section-heading--large {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
}

.contact__sub {
  color: var(--white-dim);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__bg-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,149,107,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

@media (max-width: 768px) {
  .contact { padding: 6rem 1.5rem; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--white-dim);
  font-family: var(--font-mono);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.lang-en .reveal-left { animation-name: slideInRight; }
.lang-en .reveal-right { animation-name: slideInLeft; }

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.animated {
  animation: fadeUp 0.9s var(--ease) calc(var(--d, 0) * 0.12s) forwards;
}

.reveal-left.animated {
  animation: slideInLeft 0.9s var(--ease) forwards;
}

.reveal-right.animated {
  animation: slideInRight 0.9s var(--ease) 0.15s forwards;
}

/* Hero initial state */
.reveal-hero { opacity: 1; transform: none; }
