/* =============================================
   GISELE TRAJES — CSS Principal
   ============================================= */

/* ---- VARIÁVEIS ---- */
:root {
  --primary: #6cc784;
  --primary-light: #9ddaac;
  --primary-dark: #3e9957;
  --secondary: #f0f8f2;
  --secondary-dark: #daeee1;
  --dark: #111a13;
  --dark-mid: #1e2f21;
  --text: #1e2f21;
  --text-muted: #5a7260;
  --border: #c8e2ce;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --radius: 0px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SEÇÕES ---- */
.section { padding: 80px 0; }
.bg-soft { background: var(--secondary); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-primary-soft { background: #f0faf3; }

/* ---- TIPOGRAFIA ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--primary-light); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.body-text.light { color: rgba(255,255,255,0.75); }

.mt-action { margin-top: 32px; display: inline-flex; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-secondary {
  background: var(--secondary-dark);
  color: var(--text);
  border-color: var(--secondary-dark);
}
.btn-secondary:hover { background: var(--border); }

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.btn-light:hover { background: var(--secondary); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* ---- MOBILE NAV ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
@media (max-width: 899px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.hero-bg.no-img { background: linear-gradient(135deg, #1a3320 0%, #111a13 100%); }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,26,19,0.9) 0%, rgba(17,26,19,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  padding-top: 120px;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--primary-light); }
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { height: 0; opacity: 1; }
  100% { height: 60px; opacity: 0; }
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-images {
  position: relative;
}
.about-img-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--secondary-dark);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--primary);
  border: 6px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.placeholder-img {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img::after {
  content: '✦';
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.4;
}

/* ---- CATEGORIES ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .categories-grid { grid-template-columns: 1fr; }
}

.category-card {
  display: block;
  overflow: hidden;
  position: relative;
}
.category-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--secondary-dark);
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover .category-img img { transform: scale(1.05); }
.category-info {
  padding: 20px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
}
.category-info h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; }
.category-info span { font-size: 0.8rem; color: var(--primary); letter-spacing: 0.03em; }

/* ---- HIGHLIGHTS ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .highlights-grid { grid-template-columns: 1fr; } }

.highlight-card { position: relative; }
.highlight-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--secondary-dark);
}
.highlight-img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* ---- TESTIMONIAL BANNER ---- */
.testimonial-banner-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--primary-light);
  opacity: 0.4;
  margin-bottom: 8px;
}
.testimonial-banner-inner blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-banner-inner cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* ---- CTA SECTION ---- */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-short {
  min-height: 280px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.page-hero-bg.no-img { background: linear-gradient(135deg, #1a3320 0%, #111a13 100%); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}
.page-hero-short .page-hero-content { padding-top: 0; padding-bottom: 0; text-align: center; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-title.dark { color: var(--text); }
.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.page-hero-sub.dark { color: var(--text-muted); }

/* ---- FILTERS BAR ---- */
.filters-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 80px;
  z-index: 50;
}
.filters-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ---- GALLERY ---- */
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-desc { color: var(--text-muted); font-weight: 300; max-width: 500px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 12px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--secondary-dark);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--secondary); border-bottom: 1px solid var(--border); }
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 40px 24px;
}
.stat { text-align: center; padding: 16px 40px; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--primary); }
.stat span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ---- FEATURED TESTIMONIALS ---- */
.featured-testimonials { display: flex; flex-direction: column; gap: 80px; }
.featured-testimonial {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.featured-testimonial.reverse { direction: rtl; }
.featured-testimonial.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .featured-testimonial, .featured-testimonial.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.featured-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--secondary-dark);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: var(--primary); font-size: 1.2rem; margin-bottom: 20px; }
.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}
.featured-cite { font-style: normal; font-size: 0.85rem; color: var(--text-muted); }
.featured-cite strong { color: var(--text); }

/* ---- TESTIMONIALS GRID ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-header { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--secondary-dark);
  flex-shrink: 0;
}
.placeholder-avatar::after {
  content: '♦';
  font-size: 1rem;
  color: var(--primary-light);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-header strong { display: block; font-size: 0.9rem; }
.stars-sm { color: var(--primary); font-size: 0.8rem; }
.testimonial-card p { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: var(--text-muted); flex: 1; }
.testimonial-date { font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; }

/* ---- CLIENT PHOTOS ---- */
.client-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .client-photos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .client-photos { grid-template-columns: repeat(2, 1fr); } }
.client-photo { aspect-ratio: 1; overflow: hidden; background: var(--secondary-dark); }
.client-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.client-photo:hover img { transform: scale(1.08); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-items { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-item p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.contact-link { color: var(--primary); font-size: 0.9rem; }
.contact-link:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}
@media (max-width: 600px) { .contact-form-wrap { padding: 28px 20px; } }

.contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: -8px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-weight: 300; }

/* ---- MAP ---- */
.map-section { height: 400px; background: var(--secondary-dark); position: relative; }
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-overlay-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-overlay-text svg { color: var(--primary); }
.map-overlay-text p { color: var(--text-muted); font-size: 1rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }
.footer-brand { text-align: center; }
.footer-logo { height: 40px; width: auto; margin: 0 auto 16px; opacity: 0.8; mix-blend-mode: multiply; }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.4rem; color: var(--primary); }
.footer-tagline { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.9rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }

/* ---- UTILITY ---- */
.hidden { display: none !important; }
