@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #d4af37;
  --gold-dark: #c9a227;
  --gold-light: #e5c76b;
  --cream: #faf8f5;
  --blush: #f5e6e8;
  --soft-pink: #f0e5e7;
  --white: #ffffff;
  --gray-900: #111111;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --green: #22c55e;
  --shadow-soft: 0 2px 15px rgba(0,0,0,0.06);
  --shadow-luxury: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font-family: inherit; }

/* ─── UTILITY ─── */
.container { width: 100%; padding: 0 1.25rem; max-width: 1400px; margin: 0 auto; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }
@media (min-width: 1280px) { .container { padding: 0 5rem; } }

.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--blush { background: var(--blush); }
.section--cream { background: var(--cream); }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.display-xl { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.1; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1.15; }
.display-md { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.3; }
.body-lg { font-family: var(--font-body); font-size: 1.125rem; line-height: 1.7; color: var(--gray-600); }
.body-md { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7; color: var(--gray-600); }
.body-sm { font-family: var(--font-body); font-size: 0.825rem; line-height: 1.7; color: var(--gray-600); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 30px rgba(212,175,55,0.4); transform: translateY(-2px); }
.btn-outline {
  background: var(--white); color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.2rem 3rem; font-size: 1rem; }
.btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,248,245,0.92); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft); padding: 0.75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--gray-900); }
.nav-logo svg { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  color: var(--gray-700); letter-spacing: 0.03em;
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cart { position: relative; padding: 0.4rem; color: var(--gray-700); cursor: pointer; transition: color 0.3s; }
.nav-cart:hover { color: var(--gold); }
.nav-cart-badge {
  position: absolute; top: -2px; right: -2px;
  width: 1rem; height: 1rem;
  background: var(--gold); color: white; font-size: 0.55rem; font-weight: 700;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: var(--gray-700); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link { font-family: var(--font-display); font-size: 2.5rem; color: var(--gray-900); transition: color 0.3s; }
.mobile-menu-link:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; color: var(--gray-700); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; }
.footer-desc { font-size: 0.825rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a { padding: 0.4rem; color: var(--gray-500); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-heading { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--gray-900); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.825rem; color: var(--gray-600); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-newsletter-text { font-size: 0.825rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.6; }
.footer-form { display: flex; gap: 0.5rem; }
.footer-input {
  flex: 1; padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.825rem;
  background: var(--white); outline: none;
  transition: border-color 0.3s;
}
.footer-input:focus { border-color: var(--gold); }
.footer-form .btn { padding: 0.7rem 1.25rem; font-size: 0.825rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--gray-100); }
.footer-copy { font-size: 0.75rem; color: var(--gray-500); }
.footer-heart { font-size: 0.75rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.25rem; }
.footer-heart span { color: var(--gold); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; } }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(250,248,245,0.97) 0%, rgba(250,248,245,0.85) 45%, rgba(250,248,245,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 8rem 0 4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px); border-radius: 100px;
  box-shadow: var(--shadow-soft); margin-bottom: 1.5rem;
  font-size: 0.7rem; font-weight: 500; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-badge svg { color: var(--gold); }
.hero-title { margin-bottom: 1.5rem; max-width: 30ch; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle { margin-bottom: 2.5rem; max-width: 45ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; color: var(--gray-600); }
.stars { display: flex; gap: 1px; color: var(--gold); }

/* ─── PRODUCT GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: all 0.4s ease;
}
.product-card:hover { box-shadow: var(--shadow-luxury); transform: translateY(-4px); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.15), transparent); opacity: 0; transition: opacity 0.4s; }
.product-card:hover .product-card-img-overlay { opacity: 1; }
.product-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.35rem 0.85rem; background: var(--gold); color: white;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700;
}
.product-card-body { padding: 1.5rem; }
.product-card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--gray-900); margin-bottom: 0.35rem; transition: color 0.3s; }
.product-card:hover .product-card-title { color: var(--gold); }
.product-card-sub { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1.25rem; line-height: 1.5; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price sup { font-size: 0.7rem; color: var(--gray-400); vertical-align: super; margin-right: 1px; }
.product-price strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; color: var(--gray-900); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.25rem; background: var(--gray-900); color: white;
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  transition: all 0.3s; text-decoration: none; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--gold); }
.btn-dark svg { width: 0.9rem; height: 0.9rem; transition: transform 0.3s; }
.btn-dark:hover svg { transform: translateX(3px); }

/* ─── ABOUT SECTION ─── */
.about-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 4rem; margin-top: 3rem; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.8rem; color: var(--gray-600); }

/* ─── PRODUCT PAGE HERO ─── */
.product-hero { padding: 8rem 0 4rem; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .product-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.product-img-wrap { position: relative; }
.product-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-luxury); }
.product-rating-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-luxury);
  padding: 1rem 1.25rem;
}
.download-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; background: var(--blush); border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 2rem; }
.price-original { font-family: var(--font-body); font-size: 1rem; color: var(--gray-400); text-decoration: line-through; }
.price-current { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; color: var(--gold); }
.price-note { font-size: 0.8rem; color: var(--gray-500); }
.guarantee { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; color: var(--gray-500); margin-top: 1.25rem; }
.guarantee svg { color: var(--green); flex-shrink: 0; }

/* ─── FEATURES GRID ─── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}
.feature-item:hover { box-shadow: var(--shadow-luxury); }
.feature-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; background: rgba(212,175,55,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.feature-icon svg { width: 1.1rem; height: 1.1rem; }

/* ─── TRANSFORMATION CARDS ─── */
.transform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
@media (max-width: 768px) { .transform-grid { grid-template-columns: 1fr; } }
.transform-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  text-align: center; box-shadow: var(--shadow-soft);
  transition: all 0.3s; 
}
.transform-card:hover { box-shadow: var(--shadow-luxury); transform: translateY(-3px); }
.transform-num { width: 3rem; height: 3rem; background: rgba(212,175,55,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; text-align: left; background: none; border: none; cursor: pointer; gap: 1rem; }
.faq-q { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--gray-900); }
.faq-btn:hover .faq-q { color: var(--gold); }
.faq-chevron { flex-shrink: 0; color: var(--gray-400); transition: transform 0.3s; width: 1.1rem; height: 1.1rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p { padding: 0 1.5rem 1.5rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; }

/* ─── NEWSLETTER ─── */
.newsletter-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 1rem 1.25rem;
  border: 1.5px solid var(--gray-200); border-radius: 100px;
  font-family: var(--font-body); font-size: 0.875rem;
  background: var(--white); outline: none; transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } .newsletter-input { border-radius: 12px; } .newsletter-form .btn { border-radius: 12px; } }

/* ─── URGENCY BANNER ─── */
.urgency-banner {
  background: var(--gray-900); color: white;
  padding: 0.6rem 1.25rem; text-align: center;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em;
}
.urgency-banner span { color: var(--gold-light); font-weight: 600; }

/* ─── CONTACT FORM ─── */
.contact-form-wrap { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-soft); padding: 3rem; max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.8rem; font-weight: 500; color: var(--gray-700); }
.form-control {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.875rem;
  background: var(--cream); outline: none; transition: border-color 0.3s; width: 100%;
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
textarea.form-control { resize: none; }
.form-success { text-align: center; padding: 2rem; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; margin: 1rem 0 0.5rem; }

/* ─── CARDS (info pages) ─── */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .info-cards { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: 16px; padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); }
.info-card-icon { width: 3rem; height: 3rem; background: rgba(212,175,55,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin: 0 auto 1rem; }
.info-card-icon svg { width: 1.3rem; height: 1.3rem; }
.info-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.35rem; }
.info-card .detail { font-size: 0.95rem; font-weight: 600; color: var(--gold); margin-bottom: 0.25rem; }
.info-card .note { font-size: 0.775rem; color: var(--gray-500); }

.policy-block { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-soft); margin-bottom: 1.5rem; }
.policy-block h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.5rem; }
.policy-block ol { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.policy-block ol li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
.policy-num { flex-shrink: 0; width: 1.75rem; height: 1.75rem; background: rgba(212,175,55,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.875rem; color: var(--gold); margin-top: 0.1rem; }
.policy-block p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.policy-block p:last-child { margin-bottom: 0; }
.policy-block p strong { color: var(--gray-800); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { padding: 8rem 0 3.5rem; text-align: center; }
.page-hero p { max-width: 55ch; margin: 0 auto; }

/* ─── VALUES GRID ─── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--cream); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s; }
.value-card:hover { box-shadow: var(--shadow-luxury); }
.value-icon { flex-shrink: 0; width: 3rem; height: 3rem; background: rgba(212,175,55,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.value-icon svg { width: 1.3rem; height: 1.3rem; }

/* ─── GUARANTEE BANNER ─── */
.guarantee-banner { background: rgba(212,175,55,0.1); border: 1.5px solid rgba(212,175,55,0.3); border-radius: 20px; padding: 3rem; text-align: center; margin-bottom: 2rem; }
.guarantee-banner svg { color: var(--gold); margin-bottom: 1rem; }

/* ─── UPSELL ─── */
.upsell-box { background: var(--cream); border-radius: 16px; border: 1.5px solid rgba(212,175,55,0.2); padding: 1.75rem; margin-top: 3rem; }

/* ─── RETURNS ─── */
.returns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .returns-grid { grid-template-columns: 1fr; } }
.returns-card { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-soft); }
.returns-card-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.returns-card-icon { width: 2.5rem; height: 2.5rem; background: rgba(212,175,55,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.returns-card-icon svg { width: 1.1rem; height: 1.1rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }
