/* ════════════════════════════════════════════════════════════
   247 STOREFRONT — Static cPanel Version
   ════════════════════════════════════════════════════════════ */

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  clip-path: inset(0 0 0 0);
}

#preloader.done {
  clip-path: inset(0 0 100% 0);
}

.preloader-counter {
  display: flex;
  align-items: baseline;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (min-width: 768px) {
  .preloader-counter {
    font-size: 5rem;
  }
}

.preloader-percent {
  font-size: 1.5rem;
  margin-left: 0.1em;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .preloader-percent { font-size: 2rem; }
}

.preloader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .preloader-bar-wrap { width: 300px; }
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.1s linear;
}

.preloader-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Archivo", sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
}

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--white);
  color: var(--black);
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.font-display {
  font-family: var(--font-display);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 3px; }

/* ── Selection ── */
::selection {
  background: var(--black);
  color: var(--white);
}

/* ═══════════════ NAVIGATION ═══════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  mix-blend-mode: difference;
}

@media (min-width: 768px) {
  #navbar { padding: 1.25rem 2.5rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 22px;
  width: auto;
  color: #fff;
}

@media (min-width: 768px) {
  .nav-logo-img { height: 26px; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  display: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  transition: opacity 0.3s;
}

.nav-cta:hover { opacity: 0.6; }

@media (min-width: 768px) {
  .nav-cta { display: block; }
}

#menuToggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  transition: opacity 0.3s;
}

#menuToggle:hover { opacity: 0.6; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease);
}

.line-1.open { transform: rotate(45deg) translateY(4.5px); }
.line-2.open { transform: rotate(-45deg) translateY(-1.5px); }

/* ── Menu Overlay ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--white);
  transition: clip-path 0.6s var(--ease);
  pointer-events: none;
}

.menu-overlay-closed {
  clip-path: inset(0 0 100% 0);
}

.menu-overlay-open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .menu-items { gap: 1rem; }
}

.menu-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  transition: font-style 0.3s, opacity 0.4s, transform 0.4s;
}

.menu-overlay-open .menu-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 0.08s + 0.15s);
}

.menu-link:hover {
  font-style: italic;
}

@media (min-width: 768px) {
  .menu-link { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .menu-link { font-size: 3.75rem; }
}

.menu-footer-left,
.menu-footer-right {
  position: absolute;
  bottom: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.menu-footer-left { left: 1.5rem; }
.menu-footer-right {
  right: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .menu-footer-left { left: 2.5rem; }
  .menu-footer-right { right: 2.5rem; }
}

.menu-footer-right a:hover {
  color: var(--black);
  transition: color 0.3s;
}

/* ═══════════════ HERO SECTION ═══════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.hero-split {
  display: flex;
  height: 100%;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-split { flex-direction: row; }
}

/* Left: Video */
.hero-visual {
  position: relative;
  height: 45%;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-visual {
    height: 100%;
    width: 45%;
  }
}

/* The video element itself */
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform-origin: center center;
}

/* Fullscreen state uses FLIP technique — applied via JS */

/* ── Floating Play Showreel Button ── */
.showreel-hover-btn {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.showreel-hover-btn.visible {
  opacity: 1;
}

.showreel-hover-btn.clickable {
  pointer-events: auto;
  cursor: pointer;
}

.showreel-hover-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.showreel-hover-btn.clickable:hover .showreel-hover-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.showreel-hover-circle svg {
  margin-left: 2px;
}

.showreel-hover-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ── Fixed X Close Button (fullscreen only) ── */
.fullscreen-close-x {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
  .fullscreen-close-x {
    top: 2rem;
    right: 2rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

.fullscreen-close-x.visible {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-close-x:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* Right: Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .hero-content { padding: 2rem 3rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 2rem 4rem; }
}

@media (min-width: 1280px) {
  .hero-content { padding: 2rem 6rem; }
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.75rem;
    margin-bottom: 1.75rem;
  }
}

.hero-title {
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4rem; } }

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  max-width: 28rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-buttons { margin-top: 2.5rem; }
}

/* ── Buttons ── */
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--black);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  overflow: hidden;
  transition: color 0.4s var(--ease);
  color: var(--black);
  text-decoration: none;
}

@media (min-width: 768px) {
  .btn-outline {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
}

.btn-outline span {
  position: relative;
  z-index: 1;
}

/* Fill-up hover effect */
.btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-fill:hover {
  color: var(--white);
}

.btn-fill:hover::before {
  transform: translateY(0);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .scroll-indicator { display: flex; }
}

.scroll-indicator span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══════════════ FEATURED WORK ═══════════════ */
.featured-work {
  position: relative;
  background: #f1f2f8;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .featured-work { padding: 8rem 3rem; }
}

@media (min-width: 1024px) {
  .featured-work { padding: 8rem 5rem; }
}

@media (min-width: 1280px) {
  .featured-work { padding: 8rem 8rem; }
}

/* ── Section Header ── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
}

.section-header-left {
  flex-shrink: 0;
}

.section-eyebrow {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

@media (min-width: 768px) {
  .section-eyebrow { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-eyebrow { font-size: 3rem; }
}

.section-description {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 24rem;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 0.75rem;
    text-align: right;
  }
}

/* ── Project Grid ── */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

/* ── Project Card ── */
.project-card {
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.project-card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background: #e0e0e8;
}

.project-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.95);
}

.project-card:hover .project-card-image {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Hover overlay */
.project-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
  transform: translate(0, 10px);
  transition: transform 0.4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.project-card:hover .project-card-overlay svg {
  transform: translate(0, 0);
}

/* Card text */
.project-card-info {
  padding-top: 1.25rem;
}

.project-card-tags {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .project-card-tags {
    font-size: 0.7rem;
    margin-bottom: 0.625rem;
  }
}

.project-card:hover .project-card-tags {
  color: var(--gray-600);
}

/* Project name with letter animation */
.project-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  overflow: hidden;
}

@media (min-width: 768px) {
  .project-card-name {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .project-card-name {
    font-size: 2.5rem;
  }
}

/* Each letter wraps in a span for animation */
.project-card-name .letter {
  display: inline-block;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.project-card-name .letter-space {
  display: inline-block;
  width: 0.25em;
}

/* Lusion-style letter hover animation */
.project-card:hover .project-card-name .letter {
  animation: letterShuffle 0.5s var(--ease);
}

@keyframes letterShuffle {
  0% { transform: translateY(0); }
  30% { transform: translateY(-100%); opacity: 0; }
  31% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Stagger each letter */
.project-card:hover .project-card-name .letter:nth-child(1) { animation-delay: 0s; }
.project-card:hover .project-card-name .letter:nth-child(2) { animation-delay: 0.03s; }
.project-card:hover .project-card-name .letter:nth-child(3) { animation-delay: 0.06s; }
.project-card:hover .project-card-name .letter:nth-child(4) { animation-delay: 0.09s; }
.project-card:hover .project-card-name .letter:nth-child(5) { animation-delay: 0.12s; }
.project-card:hover .project-card-name .letter:nth-child(6) { animation-delay: 0.15s; }
.project-card:hover .project-card-name .letter:nth-child(7) { animation-delay: 0.18s; }
.project-card:hover .project-card-name .letter:nth-child(8) { animation-delay: 0.21s; }
.project-card:hover .project-card-name .letter:nth-child(9) { animation-delay: 0.24s; }
.project-card:hover .project-card-name .letter:nth-child(10) { animation-delay: 0.27s; }
.project-card:hover .project-card-name .letter:nth-child(11) { animation-delay: 0.30s; }
.project-card:hover .project-card-name .letter:nth-child(12) { animation-delay: 0.33s; }
.project-card:hover .project-card-name .letter:nth-child(13) { animation-delay: 0.36s; }
.project-card:hover .project-card-name .letter:nth-child(14) { animation-delay: 0.39s; }
.project-card:hover .project-card-name .letter:nth-child(15) { animation-delay: 0.42s; }
.project-card:hover .project-card-name .letter:nth-child(16) { animation-delay: 0.45s; }
.project-card:hover .project-card-name .letter:nth-child(17) { animation-delay: 0.48s; }
.project-card:hover .project-card-name .letter:nth-child(18) { animation-delay: 0.51s; }
.project-card:hover .project-card-name .letter:nth-child(19) { animation-delay: 0.54s; }
.project-card:hover .project-card-name .letter:nth-child(20) { animation-delay: 0.57s; }

/* ── See All ── */
.see-all {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .see-all { margin-top: 4rem; }
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.25rem;
  color: var(--black);
}

@media (min-width: 768px) {
  .see-all-link { font-size: 0.875rem; }
}

.see-all-link svg {
  transition: transform 0.3s var(--ease);
}

.see-all-link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .contact { padding: 8rem 3rem; }
}

@media (min-width: 1024px) {
  .contact { padding: 8rem 5rem; }
}

@media (min-width: 1280px) {
  .contact { padding: 8rem 8rem; }
}

.contact-inner {
  max-width: 64rem;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .contact-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .contact-title { font-size: 3.75rem; }
}

.contact-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #9ca3af;
  max-width: 28rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-text {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-bottom: 1px solid var(--white);
  padding-bottom: 0.25rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .contact-link {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

.contact-link svg {
  transition: transform 0.3s var(--ease);
}

.contact-link:hover svg {
  transform: translateX(4px);
}

/* ── Footer ── */
.footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer {
    margin-top: 8rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--white);
  transition: color 0.3s;
}

/* ═══════════════ SHOWREEL MODAL ═══════════════ */
.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.showreel-modal.active {
  display: flex;
}

.showreel-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.showreel-close:hover { opacity: 0.6; }

.showreel-content {
  position: relative;
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.showreel-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.showreel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .showreel-title { font-size: 2.5rem; }
}

.showreel-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s var(--ease) both;
}

.animate-fade-in {
  animation: fadeIn 1s ease both;
}

.animate-scale-in {
  animation: scaleIn 0.8s var(--ease) both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-700 { animation-delay: 0.7s; }
.delay-1000 { animation-delay: 1s; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
