/*
Theme Name: Chhabra Fireworks
Theme URI: https://chhabrafireworks.com
Author: Built for Chhabra Fireworks
Description: Lightweight, mobile-first, bilingual (English/Hindi) local-business theme for Chhabra Fireworks, Gadarpur. Informational catalogue and enquiry-generation only - no cart, no checkout, no online payment. Includes LocalBusiness schema, WhatsApp/call/directions conversion actions, accessible enquiry forms and built-in SEO output.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chhabra
Tags: local-business, one-column, custom-menu, accessibility-ready, translation-ready
*/

/* ==========================================================================
   1. DESIGN TOKENS
   All colour pairings used for text meet WCAG 2.1 AA (4.5:1 body, 3:1 large).
   ========================================================================== */
:root {
  /* Brand */
  --c-maroon:        #7A1220;
  --c-maroon-dark:   #5C0D18;
  --c-maroon-soft:   #9A2233;
  --c-gold:          #C8971B;   /* decorative / borders / large display only */
  --c-gold-light:    #E3B341;
  --c-gold-text:     #7A5A0C;   /* accessible gold for body text on light bg */
  --c-gold-wash:     #FDF6E4;

  /* Neutrals */
  --c-ink:           #22201E;   /* primary text  - 14.9:1 on cream */
  --c-ink-soft:      #55504A;   /* secondary text - 7.3:1 on cream */
  --c-ink-faint:     #6E6862;
  --c-cream:         #FBF8F3;
  --c-cream-deep:    #F4EEE4;
  --c-white:         #FFFFFF;
  --c-border:        #E4DACB;
  --c-border-soft:   #EFE7DA;

  /* WhatsApp - the only green on the site */
  --c-wa:            #0E7A6B;
  --c-wa-dark:       #0A5E52;

  /* Feedback */
  --c-error:         #A8261A;
  --c-success:       #1F6B3A;

  /* Type */
  --f-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Nirmala UI", Arial, sans-serif;

  --fs-xs:   0.8125rem;   /* 13px */
  --fs-sm:   0.9375rem;   /* 15px */
  --fs-base: 1.0625rem;   /* 17px - comfortable on mobile, never below 16 */
  --fs-lg:   1.1875rem;
  --fs-xl:   1.4375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.125rem;
  --fs-4xl:  2.625rem;

  --lh-tight: 1.2;
  --lh-head:  1.28;
  --lh-body:  1.65;

  --fw-normal: 400;
  --fw-med:    500;
  --fw-semi:   600;
  --fw-bold:   700;

  /* Space */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 2.5rem;   --s-8: 3rem;
  --s-9: 4rem;     --s-10: 5rem;

  --sec-y:        3rem;    /* section padding mobile */
  --sec-y-lg:     4.5rem;  /* section padding desktop */
  --container:    1140px;
  --container-narrow: 780px;

  /* Shape */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;  --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(34,32,30,.06), 0 1px 3px rgba(34,32,30,.05);
  --sh-md: 0 2px 6px rgba(34,32,30,.07), 0 6px 16px rgba(34,32,30,.06);
  --sh-lg: 0 4px 12px rgba(34,32,30,.08), 0 12px 32px rgba(34,32,30,.08);

  --mobile-bar-h: 62px;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-cream);
  overflow-x: hidden;           /* guards against horizontal scroll */
  -webkit-font-smoothing: antialiased;
}
/* room for the sticky mobile action bar */
@media (max-width: 900px) { body { padding-bottom: var(--mobile-bar-h); } }

img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--f-head);
  line-height: var(--lh-head);
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
  font-weight: var(--fw-semi);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); letter-spacing: -.02em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -.015em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { margin: 0 0 var(--s-4); max-width: 68ch; }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.25rem; }
li { margin-bottom: var(--s-2); }
a { color: var(--c-maroon); text-underline-offset: 3px; }
a:hover { color: var(--c-maroon-dark); }
strong { font-weight: var(--fw-semi); }
hr { border: 0; border-top: 1px solid var(--c-border); margin: var(--s-7) 0; }

@media (min-width: 768px) {
  :root { --fs-3xl: 2.625rem; --fs-2xl: 2rem; --fs-4xl: 3.25rem; }
}

/* Accessibility: visible focus everywhere */
:focus-visible {
  outline: 3px solid var(--c-maroon);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-maroon); color: #fff; padding: var(--s-3) var(--s-5);
  font-weight: var(--fw-semi); border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-4); }
@media (min-width: 768px) { .wrap { padding: 0 var(--s-6); } }
.wrap-narrow { max-width: var(--container-narrow); }

.section { padding: var(--sec-y) 0; }
@media (min-width: 768px) { .section { padding: var(--sec-y-lg) 0; } }
.section--cream { background: var(--c-cream-deep); }
.section--white { background: var(--c-white); }
.section--maroon { background: var(--c-maroon); color: #fff; }
.section--maroon h2, .section--maroon h3 { color: #fff; }
.section--maroon p { color: rgba(255,255,255,.92); }

.sec-head { margin-bottom: var(--s-6); }
.sec-head--center { text-align: center; }
.sec-head--center p { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-family: var(--f-head); font-size: var(--fs-xs);
  font-weight: var(--fw-semi); letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-gold-text); margin-bottom: var(--s-2);
}
.section--maroon .eyebrow { color: var(--c-gold-light); }
.lede { font-size: var(--fs-lg); color: var(--c-ink-soft); }

.grid { display: grid; gap: var(--s-4); }
@media (min-width: 620px)  { .grid--2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 620px)  { .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px)  { .grid--3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 620px)  { .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px)  { .grid--4 { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 900px)  { .grid--split { grid-template-columns: 1.05fr .95fr; gap: var(--s-7); align-items: start; } }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-head); font-size: var(--fs-base); font-weight: var(--fw-semi);
  line-height: 1.15; text-align: center; text-decoration: none;
  padding: .875rem 1.5rem; min-height: 48px;      /* touch target */
  border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; transition: background-color .18s, border-color .18s, color .18s, transform .18s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary  { background: var(--c-maroon); color: #fff; }
.btn--primary:hover  { background: var(--c-maroon-dark); color: #fff; }
.btn--wa       { background: var(--c-wa); color: #fff; }
.btn--wa:hover { background: var(--c-wa-dark); color: #fff; }
.btn--ghost    { background: transparent; color: var(--c-maroon); border-color: var(--c-maroon); }
.btn--ghost:hover { background: var(--c-maroon); color: #fff; }
.btn--gold     { background: var(--c-gold); color: #2A1F02; }
.btn--gold:hover { background: var(--c-gold-light); color: #2A1F02; }
.btn--on-dark  { background: #fff; color: var(--c-maroon); }
.btn--on-dark:hover { background: var(--c-gold-light); color: #2A1F02; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--outline-light:hover { background: #fff; color: var(--c-maroon); }
.btn--sm  { font-size: var(--fs-sm); padding: .625rem 1rem; min-height: 42px; }
.btn--full { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.btn-row--center { justify-content: center; }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,.97);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.announce {
  background: var(--c-maroon-dark); color: #fff;
  font-size: var(--fs-sm); text-align: center; padding: .55rem var(--s-4);
}
.announce p { margin: 0; max-width: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-3) 0; }

.brand { display: flex; align-items: center; gap: .625rem; text-decoration: none; flex: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--f-head); font-weight: var(--fw-bold); font-size: 1.0625rem; color: var(--c-maroon); letter-spacing: -.01em; }
.brand__sub  { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold-text); font-weight: var(--fw-semi); }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: block; }
  .nav ul { display: flex; align-items: center; gap: var(--s-4); list-style: none; margin: 0; padding: 0; }
  .nav li { margin: 0; }
  .nav a {
    font-family: var(--f-head); font-size: var(--fs-sm); font-weight: var(--fw-med);
    color: var(--c-ink); text-decoration: none; padding: .5rem 0;
    border-bottom: 2px solid transparent; white-space: nowrap;
  }
  .nav a:hover, .nav .current-menu-item > a { color: var(--c-maroon); border-bottom-color: var(--c-gold); }
}
.header-actions { display: flex; align-items: center; gap: var(--s-2); }
.header-actions .btn { display: none; }
@media (min-width: 1000px) { .header-actions .btn { display: inline-flex; } }

/* Language switch */
.lang-switch { display: flex; border: 1px solid var(--c-border); border-radius: var(--r-pill); overflow: hidden; flex: none; }
.lang-switch a {
  font-family: var(--f-head); font-size: var(--fs-xs); font-weight: var(--fw-semi);
  padding: .45rem .7rem; text-decoration: none; color: var(--c-ink-soft); background: var(--c-white);
  min-height: 36px; display: flex; align-items: center;
}
.lang-switch a[aria-current="true"] { background: var(--c-maroon); color: #fff; }

/* Mobile menu */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--c-border);
  background: var(--c-white); border-radius: var(--r-md); cursor: pointer; color: var(--c-ink);
}
@media (min-width: 1000px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 22px; height: 22px; }
/* Show the hamburger when closed, the cross when open - never both. */
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav {
  display: none; border-top: 1px solid var(--c-border);
  background: var(--c-white); max-height: calc(100vh - 120px); overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: var(--s-3) 0; }
.mobile-nav li { margin: 0; }
.mobile-nav a {
  display: block; padding: .875rem var(--s-4); min-height: 48px;
  font-family: var(--f-head); font-weight: var(--fw-med); color: var(--c-ink);
  text-decoration: none; border-bottom: 1px solid var(--c-border-soft);
}
.mobile-nav a:hover { background: var(--c-cream); color: var(--c-maroon); }
.mobile-nav .btn-row { padding: var(--s-4); }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative; background: var(--c-maroon-dark); color: #fff;
  padding: var(--s-8) 0 var(--s-9);
  background-image: linear-gradient(160deg, #5C0D18 0%, #7A1220 55%, #93202F 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 78% 18%, rgba(227,179,65,.20), transparent 42%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: var(--fs-3xl); margin-bottom: var(--s-4); }
@media (min-width: 768px) { .hero h1 { font-size: var(--fs-4xl); } }
.hero__lede { font-size: var(--fs-lg); color: rgba(255,255,255,.93); max-width: 56ch; margin-bottom: var(--s-6); }
.hero__pills { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.pill svg { width: 18px; height: 18px; flex: none; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: var(--fs-sm); padding: .4rem .85rem; border-radius: var(--r-pill);
}
.hero .btn-row { margin-bottom: var(--s-5); }
.hero__note { font-size: var(--fs-sm); color: rgba(255,255,255,.8); margin: 0; }

/* ==========================================================================
   7. CARDS
   ========================================================================== */
.card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--s-5);
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card:hover { box-shadow: var(--sh-md); border-color: var(--c-gold); }
.card h3 { margin-bottom: var(--s-2); font-size: var(--fs-lg); }
.card p  { color: var(--c-ink-soft); font-size: var(--fs-sm); margin-bottom: var(--s-4); }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--c-gold-wash); color: var(--c-maroon);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-4);
}
.card__icon svg { width: 24px; height: 24px; }
.card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* Category card */
.cat-card { padding: 0; overflow: hidden; }
.cat-card__media {
  aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--c-gold-wash), var(--c-cream-deep));
  display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--c-border-soft);
}
.cat-card__media svg { width: 62px; height: 62px; color: var(--c-maroon); opacity: .85; }
.cat-card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.badge {
  display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-semi);
  padding: .25rem .6rem; border-radius: var(--r-pill);
  background: var(--c-gold-wash); color: var(--c-gold-text);
  border: 1px solid #E8D9AC; margin-bottom: var(--s-3); align-self: flex-start;
}
.badge--ask { background: #F3EDFF; color: #4A2C82; border-color: #DCCDF5; }

/* Trust strip */
.trust { display: grid; gap: var(--s-3); }
@media (min-width: 620px) { .trust { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .trust { grid-template-columns: repeat(3,1fr); } }
.trust__item { display: flex; gap: var(--s-3); align-items: flex-start; }
.trust__item svg { width: 24px; height: 24px; color: var(--c-maroon); flex: none; margin-top: 2px; }
.trust__item h3 { font-size: var(--fs-base); margin-bottom: .25rem; }
.trust__item p  { font-size: var(--fs-sm); color: var(--c-ink-soft); margin: 0; }

/* ==========================================================================
   8. FORMS
   ========================================================================== */
.form { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--s-5); box-shadow: var(--sh-sm); }
@media (min-width: 768px) { .form { padding: var(--s-6); } }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-family: var(--f-head); font-size: var(--fs-sm); font-weight: var(--fw-semi); margin-bottom: .35rem; color: var(--c-ink); }
.field .req { color: var(--c-error); }
.field .hint { display: block; font-size: var(--fs-xs); color: var(--c-ink-faint); font-weight: var(--fw-normal); margin-top: .15rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem;   /* >=16px stops iOS zoom */
  padding: .75rem .875rem; min-height: 48px;
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  background: var(--c-white); color: var(--c-ink);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--c-maroon); outline: 3px solid rgba(122,18,32,.18); outline-offset: 0; }
.field--check { display: flex; gap: .625rem; align-items: flex-start; }
.field--check input { width: 20px; height: 20px; min-height: 20px; margin-top: 3px; flex: none; }
.field--check label { font-weight: var(--fw-normal); font-size: var(--fs-sm); font-family: var(--f-body); }
.field-error { color: var(--c-error); font-size: var(--fs-sm); margin-top: .3rem; font-weight: var(--fw-med); }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--fs-xs); color: var(--c-ink-faint); margin-top: var(--s-3); }
@media (min-width: 620px) { .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); } }

.alert { padding: var(--s-4); border-radius: var(--r-md); margin-bottom: var(--s-5); border: 1px solid; }
.alert p:last-child { margin-bottom: 0; }
.alert--ok  { background: #EDF7F0; border-color: #BCDFC8; color: #14532D; }
.alert--err { background: #FDF0EE; border-color: #F0C4BD; color: #7F1D1D; }

/* ==========================================================================
   9. FAQ / ACCORDION
   ========================================================================== */
.faq { border-top: 1px solid var(--c-border); }
.faq details { border-bottom: 1px solid var(--c-border); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s-4) 2.25rem var(--s-4) 0;
  font-family: var(--f-head); font-weight: var(--fw-semi); font-size: var(--fs-base);
  position: relative; min-height: 48px; display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--c-maroon); border-bottom: 2px solid var(--c-maroon);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__a { padding: 0 0 var(--s-4); color: var(--c-ink-soft); }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   10. CONTACT / MAP
   ========================================================================== */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: var(--s-3); padding: var(--s-4) 0; border-bottom: 1px solid var(--c-border-soft); margin: 0; }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 22px; height: 22px; color: var(--c-maroon); flex: none; margin-top: 3px; }
.info-list dt, .info-list .k { font-family: var(--f-head); font-weight: var(--fw-semi); font-size: var(--fs-sm); color: var(--c-ink-soft); display: block; margin-bottom: .1rem; }
.info-list .v { font-size: var(--fs-base); color: var(--c-ink); }
.info-list a { font-weight: var(--fw-semi); }

.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-border); background: var(--c-cream-deep); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ==========================================================================
   11. GALLERY PLACEHOLDER
   ========================================================================== */
.ph-tile {
  aspect-ratio: 4/3; border: 2px dashed var(--c-border);
  border-radius: var(--r-md); background: var(--c-cream-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--s-4); color: var(--c-ink-faint); font-size: var(--fs-sm);
}
.ph-tile svg { width: 30px; height: 30px; margin-bottom: .5rem; opacity: .55; }

/* ==========================================================================
   12. STICKY MOBILE ACTION BAR
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--c-white); border-top: 1px solid var(--c-border);
  box-shadow: 0 -2px 12px rgba(34,32,30,.10);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 901px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: .5rem .25rem; min-height: var(--mobile-bar-h);
  font-family: var(--f-head); font-size: .75rem; font-weight: var(--fw-semi);
  text-decoration: none; color: var(--c-ink); border-right: 1px solid var(--c-border-soft);
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar svg { width: 21px; height: 21px; }
.mobile-bar .mb-call { color: var(--c-maroon); }
.mobile-bar .mb-wa   { color: var(--c-wa); }
.mobile-bar .mb-dir  { color: var(--c-gold-text); }

/* Floating WhatsApp - desktop only, mobile uses the bar */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 65;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-wa); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); text-decoration: none;
}
@media (min-width: 901px) { .wa-float { display: flex; } }
.wa-float:hover { background: var(--c-wa-dark); color: #fff; }
.wa-float svg { width: 29px; height: 29px; }

/* ==========================================================================
   13. DISCLAIMER / NOTICE
   ========================================================================== */
.notice {
  background: var(--c-gold-wash); border: 1px solid #E8D9AC;
  border-left: 4px solid var(--c-gold); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5); font-size: var(--fs-sm); color: #4A3A0B;
}
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: #3A2D06; }

/* ==========================================================================
   14. BREADCRUMBS
   ========================================================================== */
.crumbs { font-size: var(--fs-sm); color: var(--c-ink-faint); padding: var(--s-4) 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--c-border); }

/* ==========================================================================
   15. PAGE HEADER + CONTENT
   ========================================================================== */
.page-head { background: var(--c-cream-deep); border-bottom: 1px solid var(--c-border); padding: var(--s-6) 0 var(--s-7); }
.page-head h1 { margin-bottom: var(--s-3); }
.page-head .lede { margin-bottom: 0; }

.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose > :first-child { margin-top: 0; }
.prose ul li::marker { color: var(--c-maroon); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: var(--s-5); font-size: var(--fs-sm); }
.prose th, .prose td { border: 1px solid var(--c-border); padding: .6rem .75rem; text-align: left; vertical-align: top; }
.prose th { background: var(--c-cream-deep); font-family: var(--f-head); font-weight: var(--fw-semi); }
.prose blockquote { border-left: 4px solid var(--c-gold); margin: 0 0 var(--s-5); padding: var(--s-2) 0 var(--s-2) var(--s-4); color: var(--c-ink-soft); }

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer { background: var(--c-maroon-dark); color: rgba(255,255,255,.85); padding: var(--s-8) 0 0; margin-top: 0; }
.site-footer h3 { color: #fff; font-size: var(--fs-base); margin-bottom: var(--s-4); }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold-light); text-decoration: underline; }
.footer-grid { display: grid; gap: var(--s-6); }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; font-size: var(--fs-sm); }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,.75); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.18); margin-top: var(--s-7);
  padding: var(--s-5) 0; font-size: var(--fs-xs); color: rgba(255,255,255,.7);
}
.footer-legal p { max-width: none; margin-bottom: .5rem; }
.footer-legal p:last-child { margin-bottom: 0; }

/* ==========================================================================
   17. UTILITIES
   ========================================================================== */
.tc { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.small { font-size: var(--fs-sm); }
.muted { color: var(--c-ink-soft); }
.stack > * + * { margin-top: var(--s-4); }
:lang(hi) { line-height: 1.75; }
