/* ============================================
   Raising NRI Kids — Brand Stylesheet
   Palette drawn from logo + banner:
   cream, deep forest green, warm orange, gold, leaf green
   ============================================ */

:root {
  --cream: #f8f3e6;
  --cream-dark: #efe7d2;
  --forest: #2e3b2b;
  --forest-soft: #3e5240;
  --orange: #e07b2a;
  --orange-dark: #c96a1e;
  --gold: #f0c75e;
  --leaf: #58a05c;
  --earth: #8a5a2b;
  --white: #fffdf8;
  --shadow: 0 4px 24px rgba(46, 59, 43, 0.10);
  --radius: 14px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 600; }

img { max-width: 100%; display: block; }

a { color: var(--orange-dark); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 243, 230, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; max-width: 1080px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest); }
.nav-brand img, .nav-brand svg { height: 52px; width: 52px; }
.nav-brand .brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.nav-brand .brand-name span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--forest); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.btn {
  display: inline-block; background: var(--orange); color: #fff !important;
  padding: 12px 26px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--forest) !important;
  border: 2px solid var(--forest-soft);
}
.btn-outline:hover { background: var(--forest-soft); color: #fff !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--forest); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero .kicker {
  display: inline-block; background: var(--gold); color: var(--forest);
  font-size: 0.8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 8px; }
.hero h1 .accent { color: var(--orange); }
.hero .tagline { font-family: var(--font-head); font-style: italic; font-size: 1.35rem; color: var(--forest-soft); margin-bottom: 20px; }
.hero p.sub { max-width: 640px; margin: 0 auto 34px; color: var(--forest-soft); font-size: 1.08rem; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-art { margin: 48px auto 0; max-width: 420px; opacity: 0.95; }

/* Hero social strip */
.social-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-top: 44px;
}
.social-group { display: flex; align-items: center; gap: 16px; }
.social-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--forest-soft);
}
.social-group img { width: 24px; height: 24px; }
.social-group a { display: inline-flex; transition: transform .15s; }
.social-group a:hover { transform: translateY(-2px) scale(1.1); }
.social-dim { display: inline-flex; opacity: 0.35; cursor: default; }
.social-sep { width: 1px; height: 28px; background: var(--cream-dark); }
@media (max-width: 560px) {
  .social-sep { display: none; }
  .social-strip { gap: 16px; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--forest-soft); }

.band-green { background: var(--forest); color: var(--cream); }
.band-green h2, .band-green h3 { color: var(--white); }
.band-green p { color: var(--cream-dark); }

.band-cream-dark { background: var(--cream-dark); }

/* Pain points */
.pain-list { max-width: 620px; margin: 0 auto; list-style: none; counter-reset: pain; }
.pain-list li {
  counter-increment: pain; display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 1.1rem;
}
.pain-list li::before {
  content: counter(pain); flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head);
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border-top: 4px solid var(--leaf);
}
.card:nth-child(2) { border-top-color: var(--orange); }
.card:nth-child(3) { border-top-color: var(--gold); }
.card .icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--forest-soft); font-size: 0.98rem; }

/* Quote band */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem); max-width: 780px; margin: 0 auto 16px;
}
.quote-band cite { font-style: normal; font-size: 0.95rem; color: var(--gold); letter-spacing: .06em; }

/* Host */
.host { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.host-photo {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.host h2 { margin-bottom: 14px; }
.host p { margin-bottom: 14px; color: var(--forest-soft); }

/* Listen */
.platforms { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.platform {
  background: var(--white); border-radius: 999px; padding: 12px 26px;
  box-shadow: var(--shadow); font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px; color: var(--forest); text-decoration: none;
}
.platform .soon { font-size: 0.72rem; background: var(--gold); padding: 2px 8px; border-radius: 99px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; }

/* ---------- About page ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 18px; color: var(--forest-soft); }
.prose em { color: var(--forest); }
.prose .lead { font-size: 1.15rem; color: var(--forest); }
.pull {
  border-left: 4px solid var(--orange); background: var(--white);
  padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head); font-style: italic; font-size: 1.15rem; margin: 28px 0;
}

/* ---------- Contact page ---------- */
.form-wrap {
  max-width: 640px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px;
}
.form-toggle { display: flex; gap: 10px; margin-bottom: 28px; }
.form-toggle button {
  flex: 1; padding: 14px 10px; border-radius: 10px; border: 2px solid var(--cream-dark);
  background: var(--cream); font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--forest-soft); cursor: pointer; transition: all .2s;
}
.form-toggle button.active { border-color: var(--orange); background: #fdf1e3; color: var(--forest); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--cream-dark);
  border-radius: 10px; font-family: var(--font-body); font-size: 1rem;
  background: var(--cream); color: var(--forest);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--leaf); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.hint { font-size: 0.82rem; color: var(--forest-soft); margin-top: 4px; }
.hidden { display: none !important; }
.form-status { margin-top: 18px; font-weight: 600; text-align: center; }
.form-status.ok { color: var(--leaf); }
.form-status.err { color: #c0392b; }
.h-captcha { margin-bottom: 20px; }

/* ---------- Footer ---------- */
footer { background: var(--forest); color: var(--cream-dark); padding: 48px 0 32px; margin-top: 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.05rem; color: var(--white); }
.footer-brand img, .footer-brand svg { height: 44px; width: 44px; }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a { color: var(--cream-dark); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-tag { width: 100%; text-align: center; font-size: 0.85rem; margin-top: 24px; opacity: 0.7; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px; gap: 16px;
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .host { grid-template-columns: 1fr; }
  .host-photo { max-width: 280px; margin: 0 auto; }
  .form-wrap { padding: 26px 20px; }
  section { padding: 52px 0; }
}
