/* ════════════════════════════════════════════
   PATH2LOVE MASTERY — SHARED STYLESHEET v2
   path2lovemastery.com
   Upload to: /wp-content/themes/[your-theme]/p2lm-style.css
   Enqueue via functions.php or paste into Customizer > Additional CSS
════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
/* Add this in <head> of every page, or via wp_enqueue_scripts:
   https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600&family=Lora:ital@1&display=swap
*/

/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --wine: #691d33;
  --wine-light: #f2e4e8;
  --wine-dark: #4a1424;
  --teal: #177E89;
  --teal-light: #e3f2f4;
  --teal-dark: #0f565e;
  --gold: #C4975A;
  --gold-light: #f7f0e5;
  --purple: #8B5A8C;
  --purple-light: #f0e6f0;
  --charcoal: #2D2D2D;
  --muted: #6B6B6B;
  --bg: #FAF8F5;
  --white: #FFFFFF;
  --border: #E8E4E0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-accent: 'Lora', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(45,45,45,0.06);
  --shadow-md: 0 4px 12px rgba(45,45,45,0.08);
  --shadow-lg: 0 8px 30px rgba(45,45,45,0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── TYPOGRAPHY ─── */
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.5px; }
.headline { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 600; color: var(--wine); line-height: 1.2; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
.lede { font-size: 18px; color: var(--muted); line-height: 1.75; }
.pullquote { font-family: var(--font-accent); font-style: italic; font-size: 20px; color: var(--wine); border-left: 3px solid var(--gold); padding-left: 20px; line-height: 1.55; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 9999px; font-family: var(--font-body); font-weight: 600; font-size: 16px; text-decoration: none; border: none; cursor: pointer; transition: all 200ms ease; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-wine { background: var(--wine); color: var(--white); box-shadow: 0 4px 16px rgba(105,29,51,0.25); }
.btn-wine:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(105,29,51,0.3); }
.btn-teal { background: var(--teal); color: var(--white); box-shadow: 0 4px 16px rgba(23,126,137,0.25); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #8a6a3f; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--wine); border: 2px solid var(--wine); }
.btn-outline:hover { background: var(--wine-light); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ─── NAV ─── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--wine); text-decoration: none; letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--charcoal); text-decoration: none; transition: color 200ms ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-cta-btn { background: var(--wine) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: 9999px !important; font-weight: 600 !important; transition: background 200ms ease !important; font-size: 14px !important; }
.nav-cta-btn:hover { background: var(--wine-dark) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--charcoal); }
.mobile-menu { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 24px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 200ms ease; }
.mobile-menu a:hover { color: var(--wine); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-cta-wrap { margin-top: 20px; }

/* ─── FOOTER ─── */
.footer { background: var(--wine-dark); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand-tagline { font-family: var(--font-accent); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 700; text-decoration: none; transition: background 200ms ease; }
.footer-social a:hover { background: var(--wine); color: var(--white); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 200ms ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 200ms ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 400ms ease-out, transform 400ms ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ─── BADGE / TIER PILLS ─── */
.badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 14px; border-radius: 9999px; }
.badge-teal { background: var(--teal-light); color: var(--teal); }
.badge-wine { background: var(--wine-light); color: var(--wine); }
.badge-gold { background: var(--gold-light); color: #7a5c2e; }
.badge-dark { background: var(--charcoal); color: var(--white); }
.badge-blue { background: #e8f0fe; color: #1a56bb; }

/* ─── CARDS ─── */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow 250ms ease, transform 250ms ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-wine-top { border-top: 4px solid var(--wine); }
.card-teal-top { border-top: 4px solid var(--teal); }
.card-gold-top { border-top: 4px solid var(--gold); }

/* ─── FORM ELEMENTS ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.form-input, .form-textarea, .form-select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 200ms ease;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 13px; color: var(--muted); }

/* ─── CHECK LIST ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--charcoal); line-height: 1.55; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── DIVIDER ─── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ─── SECTION HEADER HELPERS ─── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .lede { margin: 12px auto 0; max-width: 600px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container, .container-narrow, .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 64px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
