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

:root {
  --brown-deep:   #1E1008;
  --brown-dark:   #3A2010;
  --brown-mid:    #6B3C18;
  --brown-warm:   #96521E;
  --brown-light:  #C07840;
  --gold:         #C8982A;
  --gold-bright:  #D9A93A;
  --gold-light:   #E8C46A;
  --gold-pale:    #F2DCA0;
  --cream-deep:   #E8D4A0;
  --cream-dark:   #F0E0B8;
  --cream:        #F7EDD0;
  --cream-soft:   #FBF4E4;
  --cream-white:  #FEFAF2;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream-soft);
  color: var(--brown-deep);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.4' fill='%23C8982A' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5rem;
  background: rgba(254,250,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-brand span { color: var(--gold); }
.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown-warm);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brown-deep) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.6rem !important;
  border-radius: 1px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--brown-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown-deep);
  transition: all 0.3s;
}

/* ── PAGE HEADER BANNER ── */
.page-banner {
  padding: 9rem 5rem 5rem;
  background: var(--brown-deep);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(200,152,42,0.06) 28px, rgba(200,152,42,0.06) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(200,152,42,0.03) 28px, rgba(200,152,42,0.03) 29px);
  pointer-events: none;
}
.page-banner .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}
.page-banner .eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  position: relative;
}
.page-banner h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}
.page-banner p {
  font-size: 1rem;
  color: rgba(247,237,208,0.55);
  max-width: 560px;
  margin-top: 1.2rem;
  font-weight: 300;
  line-height: 1.85;
  position: relative;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brown-light);
  padding: 1.2rem 5rem;
  background: var(--cream-white);
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--cream-deep); font-size: 0.65rem; }
.breadcrumb .current { color: var(--brown-mid); }

/* ── SHARED UTILITIES ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-deep);
  margin-bottom: 1.2rem;
}
.section-h strong { font-weight: 600; font-style: italic; }
.section-h.light { color: var(--cream); }
.section-h.light strong { color: var(--gold-light); }

.section-p {
  font-size: 0.975rem;
  line-height: 1.9;
  color: var(--brown-warm);
  font-weight: 300;
}
.section-p.light { color: rgba(247,237,208,0.55); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  transition: background 0.25s;
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn-dark {
  display: inline-block;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  transition: background 0.25s;
  border: 1px solid var(--brown-deep);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-deep); }

.btn-outline {
  display: inline-block;
  color: var(--brown-deep);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--brown-mid);
  border-radius: 1px;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--brown-deep); color: var(--cream); border-color: var(--brown-deep); }

.btn-outline-cream {
  display: inline-block;
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(247,237,208,0.3);
  border-radius: 1px;
  transition: all 0.25s;
}
.btn-outline-cream:hover { border-color: var(--gold); background: rgba(200,152,42,0.1); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--brown-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,152,42,0.08); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 0.5rem;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  padding: 4rem 5rem 0;
  position: relative;
  z-index: 1;
}
.footer-gold-line {
  width: 100%; height: 2px;
  background: var(--gold);
  opacity: 0.2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-brand-name span { color: var(--gold-light); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.footer-gstin {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.7;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--brown-light);
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-size: 0.75rem;
  color: rgba(247,237,208,0.45);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  .nav-brand { font-size: 1.2rem; }
  .nav-logo { width: 32px; height: 32px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-white); border-bottom: 1px solid var(--cream-dark); padding: 1.5rem 2rem; gap: 1.2rem; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .page-banner { padding: 6rem 1.5rem 3rem; }
  .breadcrumb { padding-left: 1.5rem; padding-right: 1.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  footer { padding: 3rem 1.5rem 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem 0; }
}
@media (max-width: 600px) {
  .nav-brand { font-size: 1.1rem; }
  .nav-logo { width: 28px; height: 28px; }
  .page-banner h1 { font-size: 2.2rem; }
  .page-banner p { font-size: 0.9rem; }
  .stat-num { font-size: 2rem; }
  .section-h { font-size: 1.8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-logo { width: 40px; height: 40px; }
  .footer-brand-name { font-size: 1.2rem; }
  .btn-gold, .btn-dark, .btn-outline, .btn-outline-cream { padding: 0.8rem 1.8rem; font-size: 0.75rem; }
}
@media (max-width: 400px) {
  .nav-brand { font-size: 1rem; }
  .page-banner { padding: 5.5rem 1rem 2.5rem; }
  .page-banner h1 { font-size: 1.9rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.7rem; }
}
