/* ===== ARPIT DEV — Global Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --ink:      #0e1117;
  --ink2:     #1a2130;
  --gold:     #b8922a;
  --gold-lt:  #d4aa4a;
  --gold-bg:  rgba(184,146,42,0.08);
  --cream:    #faf8f4;
  --offwhite: #f2efe9;
  --border:   #e3ddd3;
  --gray:     #7a8497;
  --white:    #ffffff;
  --radius:   6px;
  --shadow:   0 4px 32px rgba(14,17,23,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.7; overflow-x: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(14,17,23,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,42,0.25);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.03em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--ink) !important; padding: 9px 22px; border-radius: var(--radius); font-weight: 600 !important; transition: background 0.25s, transform 0.2s !important; }
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 60px 60px 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 50px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── HERO (shared) ── */
.page-hero { min-height: 100vh; background: var(--ink); display: flex; align-items: center; padding: 120px 60px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(184,146,42,0.13) 0%, transparent 65%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: var(--gold-bg); border: 1px solid rgba(184,146,42,0.3); padding: 5px 14px; border-radius: 2px; margin-bottom: 24px; }

/* ── SECTIONS ── */
section { padding: 100px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }
.section-header h2 em { color: var(--gold); font-style: normal; }
.section-header p { color: var(--gray); font-size: 1rem; margin-top: 14px; max-width: 560px; }
.divider { width: 48px; height: 3px; background: var(--gold); margin: 18px 0; border-radius: 2px; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 32px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,146,42,0.3); }
.btn-outline-dark { border: 1.5px solid var(--border); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARD ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim-1 { animation: fadeUp 0.7s ease 0.05s both; }
.anim-2 { animation: fadeUp 0.7s ease 0.15s both; }
.anim-3 { animation: fadeUp 0.7s ease 0.25s both; }
.anim-4 { animation: fadeUp 0.7s ease 0.35s both; }

/* ── INNER PAGE BANNER ── */
.inner-banner { background: var(--ink); padding: 150px 60px 80px; position: relative; overflow: hidden; }
.inner-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,146,42,0.1) 0%, transparent 65%); }
.inner-banner::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.inner-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; color: var(--white); line-height: 1.1; max-width: 1100px; margin: 0 auto; }
.inner-banner h1 em { color: var(--gold); font-style: normal; }
.inner-banner p { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 1rem; max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .page-hero, .inner-banner, section { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
