/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --saffron: #E85D04;
  --saffron-deep: #C44B00;
  --saffron-light: #FFF3E6;
  --gold: #D4A017;
  --gold-light: #F5E6B0;
  --earth: #2D1B0E;
  --earth-mid: #4A2C12;
  --text-main: #1A0F00;
  --text-body: #3D2800;
  --text-muted: #7A5A35;
  --off-white: #FFFAF4;
  --cream: #FDF6ED;
  --border: rgba(212,160,23,0.25);
  --border-strong: rgba(212,160,23,0.5);
  --shadow-warm: 0 4px 32px rgba(232,93,4,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--off-white); color: var(--text-main); line-height: 1.65; overflow-x: hidden; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(255,250,244,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-om { width: 40px; height: 40px; background: var(--saffron); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; font-family: 'Crimson Text', serif; font-weight: 600; flex-shrink: 0; }
.nav-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--earth); line-height: 1.2; }
.nav-title span { color: var(--saffron); display: block; font-size: 10px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--text-body); padding: 6px 10px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--saffron); background: var(--saffron-light); }
.nav-cta { background: var(--saffron); color: #fff !important; padding: 9px 20px !important; border-radius: 6px; }
.nav-cta:hover { background: var(--saffron-deep) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--earth); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--off-white); border-bottom: 1px solid var(--border); padding: 16px 5vw; flex-direction: column; gap: 4px; z-index: 199; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--text-body); padding: 10px 14px; border-radius: 8px; }
.mobile-menu a:hover { background: var(--saffron-light); color: var(--saffron); }

/* ── SECTION COMMONS ── */
section { padding: 80px 5vw; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; color: var(--earth); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-family: 'Crimson Text', serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.65; max-width: 1080px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.divider { width: 44px; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); border-radius: 2px; margin: 16px 0; }
.divider.center { margin: 16px auto; }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--saffron); color: #fff; padding: 13px 30px; border-radius: 6px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--saffron); padding: 12px 28px; border-radius: 6px; border: 1.5px solid var(--saffron); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: var(--saffron); color: #fff; }

/* ── PAGE HERO ── */
.page-hero { padding: 140px 5vw 80px; background: linear-gradient(135deg, var(--earth) 0%, #5C3010 100%); position: relative; overflow: hidden; }
.page-hero::before { content: 'ॐ'; font-family: 'Crimson Text', serif; font-size: 400px; color: rgba(255,255,255,0.03); position: absolute; right: -80px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-family: 'Crimson Text', serif; font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb .current { color: var(--gold); font-size: 13px; }

/* ── FOOTER ── */
footer { background: #180D05; color: rgba(255,255,255,0.7); padding: 52px 5vw 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-family: 'Cinzel', serif; font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 10px; }
.footer-brand-desc { font-family: 'Crimson Text', serif; font-size: 1rem; line-height: 1.65; margin-bottom: 18px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 13.5px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-list li a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--gold); }
.fc-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-om { color: var(--gold); font-family: 'Cinzel', serif; font-size: 1rem; }

/* ── CARD ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow 0.25s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow-warm); transform: translateY(-3px); }
.card-body { padding: 20px 22px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  section { padding: 56px 5vw; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
