/* ===== Dream Impact Agency — Shared Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-dark: #0a1428;
  --navy: #0f1f3d;
  --navy-light: #1a3358;
  --gold: #d4af37;
  --gold-light: #e8cc6e;
  --gold-dark: #b8932c;
  --cream: #f8f5ee;
  --foreground: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e0d5;
  --card: #ffffff;
  --background: #ffffff;
  --primary-foreground: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Playfair Display', serif; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding { padding: 80px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
}

/* Backgrounds */
.bg-background { background: var(--background); }
.bg-cream { background: var(--cream); }
.bg-card { background: var(--card); }
.gradient-navy {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-dark) 100%);
}
.gradient-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* Text colors */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-primary-foreground-70 { color: rgba(255,255,255,0.7); }
.text-primary-foreground-60 { color: rgba(255,255,255,0.6); }
.text-primary-foreground-40 { color: rgba(255,255,255,0.4); }
.text-navy-dark { color: var(--navy-dark); }

/* Buttons */
.btn-gold, .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy-dark);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,175,55,0.35); }
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(212,175,55,0.1); }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link img { height: 44px; width: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
  transition: color 0.2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); }
.desktop-nav .btn-gold { font-size: 12px; padding: 12px 24px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--foreground); }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
}
.mobile-nav a.active { background: rgba(212,175,55,0.1); color: var(--gold); }
.mobile-nav .btn-gold { text-align: center; justify-content: center; margin-top: 8px; }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav.open { display: flex; }
}

main { padding-top: 80px; }

/* ===== Footer ===== */
.site-footer { color: var(--primary-foreground); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-heading { font-size: 18px; margin-bottom: 16px; color: var(--gold); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-circle:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== WhatsApp button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  color: white;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.06) 0%, transparent 45%);
}
.hero-content { position: relative; max-width: 720px; padding: 64px 0; }
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .hero h1 { font-size: 56px; } }
@media (min-width: 1280px) { .hero h1 { font-size: 68px; } }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Page hero (smaller, for non-home pages) */
.page-hero { padding: 100px 0 64px; }
.page-hero .hero-badge { margin-bottom: 16px; }
.page-hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 48px; } }
@media (min-width: 1280px) { .page-hero h1 { font-size: 56px; } }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Trust bar */
.trust-bar { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-num { font-size: 32px; font-weight: 700; color: var(--navy); }
@media (min-width: 768px) { .trust-num { font-size: 38px; } }
.trust-label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* Section heading */
.section-heading { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
}
@media (min-width: 768px) { .section-heading h2 { font-size: 36px; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 44px; } }
.section-heading h2.light { color: white; }
.section-heading p { margin-top: 16px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.section-heading p.light { color: rgba(255,255,255,0.7); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.grid-5 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* Feature / service cards */
.feature-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: rgba(212,175,55,0.3); }
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy-dark);
}
.icon-box svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--foreground); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.service-glass-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s;
}
.service-glass-card:hover { background: rgba(255,255,255,0.1); }
.service-glass-card svg { color: var(--gold); margin-bottom: 20px; width: 28px; height: 28px; }
.service-glass-card h3 { font-size: 20px; font-weight: 600; color: white; margin-bottom: 12px; }
.service-glass-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.service-glass-card .learn-more { color: var(--gold); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }

/* Process steps */
.process-step { text-align: center; position: relative; }
.process-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}
.process-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--foreground); }
.process-step p { font-size: 14px; color: var(--muted); }

/* Testimonials */
.testimonial-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.testimonial-quote-icon { position: absolute; top: 24px; right: 24px; color: rgba(212,175,55,0.25); width: 32px; height: 32px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.testimonial-name { font-weight: 600; color: var(--foreground); }
.testimonial-role { font-size: 12px; color: var(--gold); font-weight: 500; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--foreground);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { color: var(--gold); flex-shrink: 0; margin-left: 16px; transition: transform 0.2s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 24px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* CTA section */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 30px; font-weight: 700; color: white; margin-bottom: 24px; }
@media (min-width: 768px) { .cta-section h2 { font-size: 44px; } }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 40px; }

/* Generic helpers */
.flex-center { display: flex; align-items: center; justify-content: center; }
.max-w-3xl { max-width: 720px; margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 64px; }
.text-center { text-align: center; }

/* Contact / Consultation forms */
.form-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
}
.form-card h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; color: var(--foreground); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--foreground); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 14px;
  font-family: inherit;
  color: var(--foreground);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
  border-color: var(--gold);
}
.form-group textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.input-icon-wrap { position: relative; }
.input-icon-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 16px; height: 16px; }
.input-icon-wrap input { padding-left: 40px; }
.btn-full { width: 100%; justify-content: center; }

.contact-info-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-info-item .icon-box { margin-bottom: 0; flex-shrink: 0; }
.contact-info-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { font-size: 14px; font-weight: 500; color: var(--foreground); }
.contact-info-value a:hover { color: var(--gold); }

.guarantee-box { padding: 24px; border-radius: 16px; background: var(--cream); border: 1px solid var(--border); }
.guarantee-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--foreground); }
.guarantee-box p { font-size: 14px; color: var(--muted); }

.sidebar-card-navy { padding: 24px; border-radius: 16px; background: linear-gradient(120deg, var(--navy-dark), var(--navy)); }
.sidebar-card-navy h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 16px; }
.sidebar-quick-link { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 14px; }
.sidebar-quick-link svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-quick-link:hover { color: var(--gold); }

.expect-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.expect-list svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* Blog */
.blog-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--card); transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.blog-thumb {
  height: 192px;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb span { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--gold); opacity: 0.2; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-meta .readtime { display: flex; align-items: center; gap: 4px; }
.blog-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--foreground); }
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.read-more { color: var(--gold); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }

/* Results / case studies */
.case-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--card); transition: box-shadow 0.3s; }
.case-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.case-header { padding: 24px; background: linear-gradient(120deg, var(--navy-dark), var(--navy)); }
.case-field { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.case-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; margin-top: 8px; }
.case-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(212,175,55,0.2);
  color: var(--gold);
}
.case-body { padding: 24px; }
.case-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.case-stat-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--navy); }
.case-stat-num.gold { color: var(--gold); }
.case-stat-label { font-size: 11px; color: var(--muted); }

/* Step list (Strategy / Services) */
.strategy-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: 32px;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) { .strategy-step { flex-direction: row; align-items: flex-start; } }
.strategy-step:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.strategy-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.strategy-icon svg { width: 28px; height: 28px; }
.strategy-step-label { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.strategy-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--foreground); }
.strategy-step p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* Services detail blocks */
.service-detail { padding: 0; }
.service-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.service-detail-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.service-detail-icon svg { width: 26px; height: 26px; }
.service-detail-head h2 { font-size: 24px; font-weight: 700; color: var(--foreground); }
@media (min-width: 768px) { .service-detail-head h2 { font-size: 28px; } }
.service-detail-overview { color: var(--muted); line-height: 1.7; max-width: 720px; margin-bottom: 32px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 768px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }
.service-detail-box { padding: 24px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); }
.service-detail-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 16px; color: var(--foreground); }
.service-detail-box li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.service-detail-box li svg { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.service-detail-box .step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* About mission/vision */
.mv-card { padding: 32px; border-radius: 16px; border: 1px solid var(--border); }
.mv-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--foreground); }
.mv-card p { color: var(--muted); line-height: 1.7; }

/* 404 */
.notfound-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.notfound-wrap h1 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.notfound-wrap p { font-size: 20px; color: var(--muted); margin-bottom: 16px; }
.notfound-wrap a { color: var(--gold); text-decoration: underline; }
