@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:wght@700;900&display=swap');

/* =============================================
   MANJUBA DROPS — SHARED BASE CSS
   Used by: contact, affiliate-disclosure,
   privacy-policy, terms, about
============================================= */

:root {
  --gold:          #E8A020;
  --gold-light:    #FFF3D4;
  --brand-dark:    #704e0a;
  --brand-mid:     #9e6f12;
  --brand-grad:    radial-gradient(circle, #9e6f12 0%, #704e0a 100%);
  --dark:          #1a1a1a;
  --dark2:         #272727;
  --text:          #333;
  --text-mid:      #555;
  --text-light:    #777;
  --white:         #ffffff;
  --off-white:     #f8f6f2;
  --border:        #e4ddd0;
  --teal-light:    #e9f5e1;
  --radius:        14px;
  --radius-sm:     8px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --t:             all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  transition: background .4s, box-shadow .4s;
}

.site-header.scrolled {
  background: var(--dark2);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.logo {
  background: #fff;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
  font-size: 17px;
  color: var(--brand-dark);
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: color .25s;
}

.nav-links a:hover { color: #b9ff1b; }

.nav-links .order-btn {
  background: linear-gradient(#fccd15 50%, #f5c60d 0);
  color: #000;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: var(--t);
}

.nav-links .order-btn:hover {
  transform: translateY(-3px);
  background: #9ddf26;
}

.menu-btn {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--brand-grad);
  padding: 130px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  right: -120px; top: -180px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  left: -80px; bottom: -100px;
}

.page-hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--dark2);
  padding: 12px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ─── MAIN CONTENT AREA ─── */
.page-body {
  padding: 72px 24px;
}

/* ─── CONTENT CARD ─── */
.content-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

/* ─── PROSE TYPOGRAPHY ─── */
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 28px 0 10px;
}

.prose p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  margin: 12px 0 20px 22px;
}

.prose li {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

.prose a {
  color: var(--brand-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  transition: color .2s;
}

.prose a:hover { color: var(--gold); }

.prose strong { color: var(--dark); font-weight: 700; }

.prose .highlight-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  margin: 24px 0;
  font-size: .95rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.prose .last-updated {
  display: inline-block;
  background: var(--teal-light);
  color: #3a6e24;
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

/* ─── SECTION TITLE (shared) ─── */
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sec-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 700px;
}

.sec-eyebrow {
  display: inline-block;
  background: var(--gold-light);
  color: var(--brand-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(#fccd15 50%, #f5c60d 0);
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  transition: var(--t);
  box-shadow: 0 8px 24px rgba(232,160,32,.35);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(232,160,32,.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--brand-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--brand-mid);
  transition: var(--t);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brand-grad);
  color: #fff;
  border-color: transparent;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--brand-grad);
  padding: 64px 24px;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-strip p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color .25s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

.footer-links { display: flex; gap: 18px; }

.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  transition: color .25s;
}

.footer-links a:hover { color: var(--gold); }

.disclaimer-box {
  font-size: .78rem;
  line-height: 1.7;
  color: rgba(255,255,255,.38);
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.08);
}

/* ─── CONTACT SPECIFIC ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(158,111,18,.12);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--brand-grad);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: .95rem;
  opacity: .85;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: .88rem;
  font-weight: 700;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: .95rem;
  opacity: 1;
  margin: 0;
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 32px;
  font-size: .88rem;
}

.response-badge .dot {
  width: 10px; height: 10px;
  background: #7fff5f;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ─── ABOUT SPECIFIC ─── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.about-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--t);
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat .lbl {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--t);
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px; height: 52px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--t);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--brand-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px;
  border: 4px solid var(--gold-light);
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: .82rem;
  color: var(--brand-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── AFFILIATE SPECIFIC ─── */
.disclosure-alert {
  background: #fffbeb;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.disclosure-alert .alert-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclosure-alert h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.disclosure-alert p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .contact-grid   { grid-template-columns: 1fr; }
  .about-stats    { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .content-card   { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 78px; left: -100%;
    width: 100%;
    background: var(--brand-grad);
    flex-direction: column;
    padding: 40px 0;
    transition: left .4s;
    gap: 24px;
  }
  .nav-links.active { left: 0; }
  .menu-btn         { display: block; }
  .form-row         { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; }
  .content-card     { padding: 28px 20px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats  { grid-template-columns: 1fr 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
}