/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --kesari: #E8700A;
  --kesari-dark: #B85508;
  --kesari-light: #F59A3D;
  --kesari-pale: #FEF3E7;
  --navy: #0F1F3D;
  --navy-mid: #1A2F50;
  --white: #FFFFFF;
  --off-white: #FAF7F4;
  --text-dark: #1A1208;
  --text-mid: #4A3A28;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(232,112,10,0.15);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--navy-mid); text-decoration: none;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.2s; padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--kesari); border-bottom-color: var(--kesari); }
.nav-cta {
  background: linear-gradient(135deg, var(--kesari), var(--kesari-dark));
  color: white; text-decoration: none;
  padding: 9px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hamburger { display:none; background:none; border:none; font-size:24px; cursor:pointer; color:var(--navy); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 52px 6vw 32px; border-top: 1px solid rgba(232,112,10,0.15); }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; font-weight: 700; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-cols { display: flex; gap: 60px; }
.footer-cols div { display: flex; flex-direction: column; gap: 6px; }
.footer-head { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--kesari-light); margin-bottom: 6px; }
.footer-cols a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-cols a:hover { color: var(--kesari-light); }
.footer-cols p { font-size: 13.5px; line-height: 1.6; }

/* ── SHARED COMPONENTS ── */
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--kesari); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 18px; }
.section-desc { font-size: 16.5px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--kesari), var(--kesari-dark));
  color: white; text-decoration: none; padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(232,112,10,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,112,10,0.4); }
.btn-outline {
  display: inline-block; background: transparent; color: rgba(255,255,255,0.8);
  text-decoration: none; padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500; border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--kesari-light); color: var(--kesari-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ORB ── */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 600px; height: 600px; background: rgba(232,112,10,0.18); top: -150px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(200,146,42,0.12); bottom: -100px; left: 10%; }

/* ── PAGE HERO (non-home) ── */
.page-hero {
  min-height: 50vh; padding: 140px 6vw 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2A1A08 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.page-hero-pattern { position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--kesari) 0, var(--kesari) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-content .page-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--kesari-light); background: rgba(232,112,10,0.15); border: 1px solid rgba(232,112,10,0.3); border-radius: 100px; padding: 5px 16px; margin-bottom: 24px; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; color: white; line-height: 1.12; margin-bottom: 20px; }
.page-hero-content h1 em { color: var(--kesari-light); font-style: normal; }
.page-hero-content p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 560px; margin-bottom: 36px; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px 6vw 28px; gap: 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .nav-links.open ~ .nav-cta-mobile { display: block; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-inner { flex-direction: column; }
}