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

:root {
  --dark-red: #6b1a1a;
  --deep-red: #4a0f0f;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf8f3;
  --soft-white: #f0ece3;
  --text: #2d2d2d;
  --muted: #6b7280;
  --white: #ffffff;
  --messenger: #0084ff;
}

body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* NAV */
nav {
  background: var(--deep-red);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.3rem; letter-spacing: 0.02em; text-decoration: none; display: block; line-height: 1.2; }
.logo span { color: var(--white); font-weight: 300; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; display: block; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }
nav a { color: var(--cream); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.4rem 0.75rem; border: 1px solid transparent; border-radius: 4px; transition: all 0.3s; white-space: nowrap; }
nav a:hover { border-color: var(--gold); color: var(--gold); }
nav a.cta { background: var(--gold); color: var(--deep-red); font-weight: 600; border-color: var(--gold); }
nav a.cta:hover { background: var(--gold-light); color: var(--deep-red); }
nav a.active { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* HERO / BANNER */
.hero { background: var(--deep-red); color: var(--white); padding: 4rem 1.5rem 5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.13) 0%, transparent 70%); pointer-events: none; }
.hero > * { position: relative; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 1rem; color: #ffffff; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: clamp(0.95rem, 2.5vw, 1.05rem); color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2rem; font-weight: 300; }
.hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* PAGE HEADER (inner pages) */
.page-header { background: var(--deep-red); color: var(--white); padding: 3.5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.13) 0%, transparent 70%); pointer-events: none; }
.page-header > * { position: relative; }
.page-header .section-label { color: var(--gold); margin-bottom: 0.6rem; display: block; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 0.8rem; color: #ffffff; }
.page-header h1 em { color: var(--gold); font-style: normal; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto; font-weight: 300; font-size: 1rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 6px; font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--deep-red); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline { border: 2px solid var(--dark-red); color: var(--dark-red); background: transparent; }
.btn-outline:hover { background: var(--dark-red); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* STATS BAR */
.stats { background: var(--white); border-bottom: 1px solid #e8e2d5; padding: 1.4rem 1.5rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark-red); font-weight: 700; display: block; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTION COMMON */
.section-label { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--dark-red); line-height: 1.2; margin-bottom: 0.8rem; }
.section-intro { color: var(--muted); font-size: 0.98rem; max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card { background: var(--white); border: 1px solid #e8e2d5; border-radius: 12px; padding: 1.6rem; transition: all 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform 0.3s; transform-origin: bottom; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(74,15,15,0.1); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark-red); margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.card-tag { display: inline-block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(201,168,76,0.12); color: var(--dark-red); border-radius: 4px; padding: 0.18rem 0.55rem; }

/* SOFT SECTION (replaces dark red section blocks) */
.soft-section { background: var(--soft-white); padding: 4rem 1.5rem; }
.soft-section-inner { max-width: 1100px; margin: 0 auto; }
.soft-section h2 { color: var(--dark-red); }
.soft-section .card { background: var(--white); }

/* DARK SECTION (for who-I-help on about page) */
.dark-section { background: var(--deep-red); padding: 4rem 1.5rem; }
.dark-section-inner { max-width: 1100px; margin: 0 auto; }
.dark-section .section-label { color: var(--gold); }
.dark-section h2 { color: var(--white); }
.dark-section .section-intro { color: rgba(255,255,255,0.65); }
.dark-section .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.dark-section .card:hover { background: rgba(255,255,255,0.1); box-shadow: 0 12px 35px rgba(0,0,0,0.2); border-color: transparent; }
.dark-section .card h3 { color: var(--gold); }
.dark-section .card p { color: rgba(255,255,255,0.7); }

/* CTA BAND */
.cta-band { background: var(--deep-red); padding: 4rem 1.5rem; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 440px; margin: 0 auto 1.8rem; font-weight: 300; font-size: 1rem; }

/* CONTENT SECTION */
.content { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }

/* DIVIDER */
.divider { height: 1px; background: linear-gradient(to right, transparent, #d4c9b0, transparent); max-width: 1100px; margin: 0 auto; }

/* CONTACT */
.contact-section { background: var(--cream); padding: 4rem 1.5rem; text-align: center; }
.contact-card { background: var(--white); border: 1px solid #e8e2d5; border-radius: 16px; padding: 2rem 1.5rem; max-width: 520px; margin: 1.5rem auto 0; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid #f0ece3; text-align: left; }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-icon.messenger-icon { background: rgba(0,132,255,0.1); }
.contact-detail strong { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.12rem; }
.contact-detail a { color: var(--dark-red); font-weight: 500; text-decoration: none; font-size: 0.98rem; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail a.messenger-link { color: var(--messenger); }
.contact-detail a.messenger-link:hover { color: #0066cc; }
.messenger-badge { display: inline-block; font-size: 0.72rem; background: rgba(0,132,255,0.1); color: var(--messenger); border-radius: 4px; padding: 0.1rem 0.5rem; margin-left: 0.35rem; font-weight: 500; vertical-align: middle; }

/* FOOTER */
footer { background: #1a0505; color: rgba(255,255,255,0.5); text-align: center; padding: 1.8rem; font-size: 0.82rem; }
footer span { color: var(--gold); }

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

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 3rem 1.2rem 4rem; }
  .hero h1 { font-size: 1.9rem; }
  .stats { gap: 1.2rem; }
  .cards-grid { grid-template-columns: 1fr; }
}
