/* ═══════════════════════════════════════════
   GROW WITH JOSHI — Shared Stylesheet
   growwithjoshi.com
═══════════════════════════════════════════ */

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

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

:root {
  --navy:    #0f2744;
  --blue:    #1a4a8a;
  --gold:    #c8a84b;
  --gold-lt: #f0e4c0;
  --white:   #ffffff;
  --off:     #f7f5f0;
  --text:    #1a1a2e;
  --muted:   #5a6272;
  --border:  #e0dbd0;
  --success: #1a7a4a;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 15px; color: var(--navy); flex-shrink: 0;
}
.nav-name { font-size: 15px; font-weight: 500; color: var(--white); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 8px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 500; text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-block; transition: opacity .2s; border: none; cursor: pointer;
}
.btn-gold:hover { opacity: .88; }
.btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  display: inline-block; transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-block; transition: opacity .2s; border: none; cursor: pointer;
}
.btn-navy:hover { opacity: .88; }

/* ── SECTIONS ── */
.section { padding: 72px 5%; }
.section-alt { background: var(--off); }
.section-label { font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.section-title-mal { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); font-weight: 300; margin-bottom: 28px; }
.text-center { text-align: center; }
.max-800 { max-width: 800px; margin: 0 auto; }
.max-1000 { max-width: 1000px; margin: 0 auto; }
.max-1100 { max-width: 1100px; margin: 0 auto; }

/* ── FOOTER ── */
footer { background: #080f1c; padding: 48px 5% 24px; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: var(--gold); margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 12px; font-weight: 500;
  transition: background .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 12px; color: var(--white); font-weight: 500; margin-bottom: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 48px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
}
