/* ============================================================
   SLB REAL — Portfolio
   Fidèle à la charte graphique originale
   ============================================================ */

:root {
  --black:         #070707;
  --dark:          #0d0d0d;
  --dark-2:        #141414;
  --dark-3:        #1a1a1a;
  --text:          #ebebee;
  --text-dim:      #8a8a90;
  --text-faint:    #4a4538;
  --accent:        #f1c333;
  --accent-dim:    #7a5e0e;
  --accent-light:  #ffe066;
  --accent-soft:   rgba(241,195,51,0.10);
  --accent-soft-2: rgba(241,195,51,0.04);
  --line:          rgba(255,255,255,0.06);

  --font-display:  'Big Shoulders Display', sans-serif;
  --font-title:    'Bebas Neue', sans-serif;
  --font-serif:    'Cormorant Garamond', serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --shell: 480px;
  --transition: 0.3s cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width:100%; display:block; }
a   { color:inherit; text-decoration:none; }
button { cursor:pointer; }

/* ── Shell — colonne centrale ── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 22px;
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shell);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px;
  background: linear-gradient(180deg, rgba(7,7,7,0.95) 0%, rgba(7,7,7,0.7) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

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

.nav-menu-btn span {
  display: block;
  width: 22px; height: 1px;
  background: var(--accent);
  transition: transform 0.4s cubic-bezier(.5,0,.2,1), opacity 0.3s;
}

.nav-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: var(--shell);
  height: 100vh;
  background: rgba(7,7,7,0.98);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-title);
  font-size: 44px;
  letter-spacing: 5px;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s, letter-spacing 0.4s;
}

.mobile-menu a .idx {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-dim);
  letter-spacing: 1px;
  position: absolute;
  top: 14px; left: -28px;
}

.mobile-menu a:hover { color: var(--accent); letter-spacing: 7px; }

.menu-line {
  width: 36px; height: 1px;
  background: var(--accent);
  margin: 18px 0;
  opacity: 0.6;
}

.menu-foot {
  position: absolute;
  bottom: 50px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */

#hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 22px 100px;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 30%, var(--accent-soft) 0%, transparent 65%),
    var(--black);
}

/* Cadre décoratif */
.hero-frame {
  position: absolute;
  top: 70px; left: 14px; right: 14px; bottom: 30px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-frame::before, .hero-frame::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
}

.hero-frame::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.hero-frame::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .9s .8s ease forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

/* Titre principal — Big Shoulders Display 900 */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(86px, 26vw, 130px);
  line-height: 0.82;
  letter-spacing: -1px;
  text-align: left;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
  position: relative;
  z-index: 2;
}

/* "REAL" — gradient outline */
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dim));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Logo carte SD flottante */
.hero-card {
  position: relative;
  width: 180px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  animation: cardIn 1.4s 1.4s cubic-bezier(.2,.7,.2,1) forwards;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 80px var(--accent-soft));
  z-index: 2;
}

.hero-card img { width:100%; display:block; }

/* Sous-titre */
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--text-dim);
  margin-top: 22px;
  letter-spacing: 0.5px;
  max-width: 280px;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* Metadata bas */
.hero-meta {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-faint);
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
  z-index: 2;
}

.hero-meta .sep { width: 14px; height: 1px; background: var(--accent-dim); }

/* ══════════════════════════════════════════════════════════
   SECTION CHROME — commun
══════════════════════════════════════════════════════════ */

section.block {
  padding: 96px 0 60px;
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before { content:''; width:20px; height:1px; background: var(--accent); }

.eyebrow .num { color: var(--text-faint); letter-spacing: 2px; }

h2.title {
  font-family: var(--font-title);
  font-size: 56px;
  letter-spacing: 2px;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 8px;
}

h2.title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 42px;
  letter-spacing: 0;
}

.divider {
  width: 30px; height: 1px;
  background: var(--accent);
  margin: 22px 0 28px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */

#about { background: var(--dark); }

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.015) 14px 15px);
}

.about-portrait .ph-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--accent);
  background: rgba(7,7,7,0.6);
  padding: 4px 8px;
  border: 1px solid var(--accent-dim);
}

.about-portrait .ph-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-faint);
  font-size: 14px;
}

.about-portrait .ph-corner {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 2px;
}

.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-greet {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-light);
  margin-bottom: 18px;
  line-height: 1.4;
}

.about-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 300;
}

.about-text strong { color: var(--accent); font-weight: 500; }

.about-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trait {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text);
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--dark-2);
  text-transform: uppercase;
}

.trait::before { content: '+ '; color: var(--accent); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat { background: var(--dark); padding: 22px 18px; }

.stat-num {
  font-family: var(--font-title);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */

#services { background: var(--black); }

.services-list { display: flex; flex-direction: column; gap: 8px; }

.service {
  position: relative;
  padding: 22px 20px 24px;
  background: var(--dark);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color 0.3s, background 0.3s;
}

.service::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.service::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-soft-2), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}

.service:hover {
  transform: translateX(6px);
  border-color: var(--accent-dim);
  background: var(--dark-2);
}

.service:hover::before { transform: scaleY(1); }
.service:hover::after  { opacity: 1; }

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: var(--accent-dim);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-faint);
  text-transform: uppercase;
}

.service-name {
  font-family: var(--font-title);
  font-size: 30px; letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════════════════ */

#projects { background: var(--dark); }

.filters {
  display: flex; gap: 8px;
  margin: 0 -22px 28px;
  padding: 0 22px 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar { display: none; }

.filter {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(241,195,51,0.35);
  padding: 12px 20px;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
}

.filter:hover {
  background: rgba(241,195,51,0.08);
  border-color: var(--accent);
}

.filter .count {
  color: var(--accent-dim);
  margin-left: 6px;
  font-size: 9px;
}

.filter.active {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

.filter.active .count { color: rgba(0,0,0,0.5); }
.filter.active:hover { background: var(--accent-light); }

.projects-list { display: flex; flex-direction: column; }

.project {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.4s;
}

.project:first-child { border-top: 1px solid var(--line); }
.project.hidden { display: none; }

.project-thumb {
  width: 64px; height: 64px;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.project-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,0.02) 8px 9px);
}

.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.project-thumb .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  opacity: 0.7;
  background: rgba(7,7,7,0.3);
}

.project-thumb .play svg { width: 18px; height: 18px; }

.project-info { min-width: 0; }

.project-cat {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 2.5px;
  color: var(--accent-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project:hover .project-title { color: var(--accent); }

.project-meta {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-faint);
  text-align: right;
  line-height: 1.4;
  flex-shrink: 0;
}

.project-meta .year { color: var(--text-dim); }

/* Placeholder projects */
.project.coming .project-thumb { opacity: 0.4; }
.project.coming .project-title { color: var(--text-faint); font-style: italic; }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */

#process { background: var(--black); }

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:first-child { border-top: 1px solid var(--line); }

.step-num {
  font-family: var(--font-title);
  font-size: 44px;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-dim);
  line-height: 1;
  transition: color 0.4s, -webkit-text-stroke 0.4s;
}

.process-step:hover .step-num {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.step-title {
  font-family: var(--font-title);
  font-size: 22px; letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 6px;
}

.step-title-fr {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0;
  margin-left: 8px;
}

.step-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */

#contact { background: var(--dark); padding-bottom: 80px; }

.contact-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 36px;
}

.contact-intro span { color: var(--accent); }

form.contact-form { display: flex; flex-direction: column; gap: 14px; }

.field { position: relative; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field label .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  padding: 10px 0;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--accent); }

.field textarea { resize: none; min-height: 90px; line-height: 1.6; }

.field select { color: var(--text); }
.field select option { background: var(--dark-2); color: var(--text); }

.field .err {
  font-family: var(--font-mono);
  font-size: 9px; color: #d04848;
  letter-spacing: 1px;
  margin-top: 6px;
  display: none;
}

.field.invalid .err { display: block; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-bottom-color: #d04848; }

.submit-btn {
  margin-top: 18px;
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 18px;
  width: 100%;
  font-family: var(--font-title);
  font-size: 15px; letter-spacing: 4px;
  transition: background 0.3s;
}

.submit-btn:hover { background: var(--accent-light); }

/* Succès */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show { display: block; animation: fadeUp 0.6s ease forwards; }

.form-success .check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.form-success h3 {
  font-family: var(--font-title);
  font-size: 1.8rem; letter-spacing: 2px;
  color: var(--text); margin-bottom: 0.5rem;
}

.form-success p {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-faint); text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */

footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 2rem 22px;
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 16px; letter-spacing: 5px;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
}

.footer-logo .dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-faint); text-transform: uppercase;
}

.footer-social { display: flex; gap: 8px; }

.social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}

.social-btn:hover { border-color: var(--accent-dim); }

.social-btn svg {
  width: 14px; height: 14px;
  stroke: var(--text-dim); stroke-width: 1.5; fill: none;
  transition: stroke 0.3s;
}

.social-btn:hover svg { stroke: var(--accent); }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX YOUTUBE
══════════════════════════════════════════════════════════ */

.video-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.22s ease;
}

.video-modal[hidden] { display: none; }

.video-modal-inner {
  width: 100%; max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--line);
}

.video-modal-inner iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

.video-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 38px; height: 38px;
  background: var(--dark-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}

.video-modal-close:hover { border-color: var(--accent-dim); }

.video-modal-close svg {
  width: 16px; height: 16px;
  stroke: var(--text-dim); stroke-width: 1.5;
}

.modal-yt-btn {
  position: absolute;
  bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.25rem;
  background: rgba(7,7,7,0.85);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}

.modal-yt-btn:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   REVEAL
══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

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

@keyframes cardIn {
  from { opacity:0; transform: translateY(30px) scale(0.85); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform: scaleY(0.6); transform-origin: top; }
  50%     { opacity:1;   transform: scaleY(1);   transform-origin: top; }
}
