/* ============================================================
   P. L. Deshpande — Static Site Styles
============================================================ */

:root {
  --maroon: #7B1515;
  --maroon-dark: #5A0F0F;
  --gold: #C9A227;
  --gold-dark: #B58A1A;
  --gold-light: #F2D58A;
  --parchment: #FAF6F0;
  --parchment-2: #FDF8F0;
  --cream: #F7E9D2;
  --border: #EDE2D2;
  --border-soft: #F0E4D2;
  --ink: #2C1810;
  --ink-2: #2C2016;
  --ink-3: #3A2A1A;
  --muted: #5A4530;
  --muted-2: #7A6A55;
  --muted-3: #9A7A5A;

  --font-marathi: 'Tiro Devanagari Marathi', serif; 
  --font-serif: 'Tiro Devanagari Marathi', serif;
  --font-sans: 'Tiro Devanagari Marathi', serif;
  --font-nato: 'Noto Sans Devanagari', serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* Side Card Links - 2 Column Layout */
.side-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.side-card-header,
.side-card .ornament {
  grid-column: 1 / -1; /* Header full width */
}

.side-link {
  margin: 0;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.6);
}

.inside-top-link {
  margin: 0;
  min-height: 22px;
  padding: 10px;
  text-decoration: underline;
  line-height: 25px;
  background: rgba(255,255,255,0.6);
}

/* Mobile */
@media (max-width: 991px) {
  .side-card {
    grid-template-columns: 1fr;
  }
}

.side-card-links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
}


/* ===== Anniversary Block ===== */

.brand-anniversary{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    gap:2px;
    margin-top:8px;
}

.jubilee-title{
    font-size:11px;
    font-weight:900;
    letter-spacing:.28em;
    color:var(--gold);
    text-transform:uppercase;
    line-height:1;
}

.jubilee-years{
    font-size:12px;
    font-weight:900;
    color:var(--muted-3);
    letter-spacing:.12em;
    line-height:1.2;
}

/* Mobile */

@media (max-width:640px){

    .brand-name{
        font-size:18px;
    }

    .brand-tag{
        font-size:10px;
    }

    .jubilee-title{
        font-size:9px;
        letter-spacing:.20em;
    }

    .jubilee-years{
        font-size:10px;
    }
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink-2);
  background:
    radial-gradient(1200px 600px at 80% -10%, #F7E9D2 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, #F1E0CB 0%, transparent 60%),
    var(--parchment);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.icon-hidden { display: none; }

.top-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 50%, var(--maroon) 100%);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5.5vw, 80px);
}

/* ===================== HEADER ===================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  animation: fadeDown 0.5s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.brand-mono {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(123,21,21,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-marathi);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  padding-left:12px;
}

.brand-tag {
  font-size: 11px;
  color: var(--muted-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
  text-align:left;
}

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-family: var(--font-marathi);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-desktop a.active { color: var(--maroon); }
.nav-desktop a:hover { color: var(--maroon); }

.back-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s;
}
.back-pill:hover { transform: translateX(-2px); }

/* Hamburger button */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--maroon);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px -4px rgba(60,30,10,0.12);
  transition: background 0.2s, transform 0.2s;
}
.hamburger:hover {
  background: rgba(255,255,255,0.9);
}
.hamburger:active {
  transform: scale(0.95);
}

/* Mobile drawer */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(28,12,4,0.55);
  backdrop-filter: blur(4px);
  z-index: 60;
  animation: fadeIn 0.2s ease;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--parchment-2) 100%);
  z-index: 70;
  box-shadow: -24px 0 60px -20px rgba(60,30,10,0.4);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { display: block; }
body.drawer-open { overflow: hidden; }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(135deg, rgba(123,21,21,0.04), rgba(201,162,39,0.06));
}
.drawer-header .brand-mono { width: 36px; height: 36px; font-size: 16px; }
.drawer-header .brand-name { font-size: 16px; }

.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--cream); }

.drawer-section { padding: 18px 16px 8px; }
.drawer-section + .drawer-section { border-top: 1px solid var(--border-soft); margin-top: 10px; padding-top: 12px; }

.section-label-row {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px; margin-bottom: 6px;
}
.section-label-bar {
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: 1px;
}
.section-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 700;
}

.drawer-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-marathi);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  transition: background 0.2s;
}
.drawer-link.active { color: var(--maroon); }
.drawer-link:hover { background: #FFF6EC; }
.drawer-link .icon-arrow { color: var(--gold); }

.drawer-side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-marathi);
  color: var(--ink-3);
  transition: background 0.2s;
}
.drawer-side-link:hover { background: #FFF6EC; }
.drawer-side-link:hover .label { color: var(--maroon); }
.drawer-side-link .label {
  font-size: 14.5px;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s;
}
.drawer-side-link .icon-wrap {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(123,21,21,0.06), rgba(201,162,39,0.10));
  color: var(--maroon);
  flex-shrink: 0;
}

/* ===================== HERO ===================== */
.hero-row {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(201,162,39,0.25);
  box-shadow: 0 24px 60px -20px rgba(60,30,10,0.35), 0 8px 24px -12px rgba(60,30,10,0.18);
  animation: fadeUp 0.6s ease both;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  filter: saturate(0.92) contrast(1.02);
}
.hero-overlay-1 {
  position: absolute; inset: 0;
  background:linear-gradient(115deg, rgba(28,12,4,0.78) 0%, rgba(60,25,10,0.55) 10%, rgba(90,40,15,0.15) 20%);
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 80%, rgba(201,162,39,0.18), transparent 70%);
}
.hero-content {
  position: relative;
  min-height: 452px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--parchment);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.hero-eyebrow .bar {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-eyebrow .text {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--font-nato);
  font-weight: 500;
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 1.09;
  letter-spacing: -0.01em;
  margin: 0;
  color: #FFF8EC;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero h1 .marathi { font-family: var(--font-marathi); font-weight: 600; }
.hero p {
  font-family: var(--font-marathi);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: rgba(255,248,236,0.88);
  margin: 16px 0 0;
  max-width: 520px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 12px;
  margin-top: 24px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -6px rgba(201,162,39,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,248,236,0.3);
  color: var(--parchment);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ===================== SIDE NAV CARD ===================== */
.side-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--parchment-2) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -30px rgba(60,30,10,0.18), 0 4px 16px -6px rgba(60,30,10,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 380px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.side-card .ornament {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.13), transparent 70%);
  pointer-events: none;
}
.side-card-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
}

.side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-marathi);
  color: var(--ink-3);
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.side-link:hover { transform: translateX(4px); }
.side-link:hover .label { color: var(--maroon); }
.side-link:hover .icon-arrow { opacity: 1; transform: translateX(0); }
.side-link .icon-wrap {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(123,21,21,0.06), rgba(201,162,39,0.08));
  color: var(--maroon);
  flex-shrink: 0;
}
.side-link .label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.005em;
  flex: 1;
  transition: color 0.2s;
}
.side-link .icon-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  color: var(--maroon);
}

/* ===================== SECTION HEADING ===================== */
.section-heading {
  margin-top: 44px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}
.section-heading .eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-3);
  text-transform: uppercase;
  font-weight: 600;
}
.section-heading h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 6px 0 0;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.section-heading h2 em { color: var(--maroon); font-style: italic; }
.section-heading .marathi-note {
  font-family: var(--font-marathi);
  font-size: 14px;
  color: var(--muted-2);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}

/* ===================== GRID ===================== */
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.grid-cell {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(60,30,10,0.02), 0 1px 3px rgba(60,30,10,0.03);
  transition: transform 0.2s;
  animation: fadeUp 0.4s ease both;
}
.grid-cell:hover { transform: translateY(-3px); }
.grid-cell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  opacity: 0;
  transition: opacity 0.2s;
}
.grid-cell:hover::before { opacity: 1; }
.grid-cell .icon-wrap {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFF6EC 0%, #FBEAD6 100%);
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px rgba(201,162,39,0.18);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.grid-cell:hover .icon-wrap { transform: scale(1.05); }
.grid-cell .label {
  font-family: var(--font-marathi);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
  flex: 1;
  transition: color 0.2s;
}
.grid-cell:hover .label { color: var(--maroon); }

/* Stagger entrance for grid cells */
.grid-cell:nth-child(1) { animation-delay: 0.35s; }
.grid-cell:nth-child(2) { animation-delay: 0.38s; }
.grid-cell:nth-child(3) { animation-delay: 0.41s; }
.grid-cell:nth-child(4) { animation-delay: 0.44s; }
.grid-cell:nth-child(5) { animation-delay: 0.47s; }
.grid-cell:nth-child(6) { animation-delay: 0.50s; }
.grid-cell:nth-child(7) { animation-delay: 0.53s; }
.grid-cell:nth-child(8) { animation-delay: 0.56s; }
.grid-cell:nth-child(9) { animation-delay: 0.59s; }
.grid-cell:nth-child(10) { animation-delay: 0.62s; }
.grid-cell:nth-child(n+11) { animation-delay: 0.65s; }

/* ===================== FOOTER ===================== */
.site-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeIn 0.6s 0.6s ease both;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-mono {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
}
.footer-meta { font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.02em; }
.footer-right { display: flex; align-items: center; gap: 16px; }
.footer-right a {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--maroon); }
.footer-right .sep { color: #D9C7AE; }

/* ===================== INSIDE PAGE ===================== */
.breadcrumb {
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--muted-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  animation: fadeIn 0.4s ease both;
}
.breadcrumb a { cursor: pointer; }
.breadcrumb .current { color: var(--maroon); }
.breadcrumb .sep { color: #D9C7AE; }

.inside-hero { min-height: 340px; }
.inside-hero .hero-content { min-height: 340px; }

.content-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 24px;
  align-items: flex-start;
}
.content-row-2 {
  margin-top: 28px;
  display: grid;
  grid-template-columns:2.6fr;
  gap: 24px;
  align-items: flex-start;
}

.related-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--parchment-2) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -30px rgba(60,30,10,0.18), 0 4px 16px -6px rgba(60,30,10,0.06);
  padding: 20px 16px;
  animation: fadeUp 0.55s 0.15s ease both;
}
.related-accordion > summary {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
  list-style: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 1;
}
.related-accordion > summary::-webkit-details-marker { display: none; }
.related-accordion .label-flex { flex: 1; }
.related-chevron { color: var(--maroon); transition: transform 0.25s ease; }
.related-accordion[open] .related-chevron { transform: rotate(90deg); }
@media (min-width: 992px) {
  .related-accordion > summary { cursor: default !important; pointer-events: none; }
  .related-accordion > summary .related-chevron { display: none; }
  .related-accordion > .accordion-body { display: flex !important; }
}
@media (max-width: 991px) {
  .related-accordion:not([open]) > summary {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .related-accordion:not([open]) > .accordion-body { display: none; }
}
.accordion-body { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }

.article-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--parchment-2) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -30px rgba(60,30,10,0.18), 0 4px 16px -6px rgba(60,30,10,0.06);
  padding: clamp(24px, 3vw, 36px);
  animation: fadeUp 0.6s 0.2s ease both;
}
.article-eyebrow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-3);
  text-transform: uppercase;
  font-weight: 600;
}
.article-eyebrow svg { color: var(--maroon); }
.article-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.article-card h2 em { color: var(--maroon); font-style: italic; }
.inset-img {
  float: left;
  width: 240px; height: 180px;
  object-fit: cover;
  margin-right: 20px; margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -16px rgba(60,30,10,0.3);
}
.inset-img-full-wh { 
  float: left;
  width: 240px; height: 100%;
  object-fit: cover;
  margin-right: 20px; margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -16px rgba(60,30,10,0.3);
}
.inset-img-pgd { 
  float: left;
  width: 600px; height: 100%;
  object-fit: cover;
  margin-right: 20px; margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -16px rgba(60,30,10,0.3);
}
.body-text {
  font-family: var(--font-nato);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
  text-align: justify;
  letter-spacing: 0.003em;
}
.dropcap {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.9;
  float: left;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--maroon);
  font-weight: 600;
}
.clearfix { clear: both; }

.pullquote {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123,21,21,0.04), rgba(201,162,39,0.08));
  border-left: 3px solid var(--gold);
  display: flex; gap: 14px; align-items: flex-start;
}
.pullquote svg { color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}

.page-wrap { padding-bottom: 48px; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hero-row { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: repeat(3, 1fr); }
  .content-row { grid-template-columns: 1fr; }
  .inset-img { width: 100%; height: 220px; float: none; margin: 0 0 16px 0; }
  .inset-img-full-wh { width: 100%; height: 100%; float: none; margin: 0 0 16px 0; }
  .inset-img-pgd { width: 100%; height: 100%; float: none; margin: 0 0 16px 0; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .back-pill { display: none; }
}
@media (max-width: 640px) {
  .link-grid { grid-template-columns: 1fr; }
  .section-heading .marathi-note { text-align: left; }
}



/*============== model ==================*/
/* ===================== WELCOME MODAL ===================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 12, 4, 0.45);
  backdrop-filter: blur(3px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 72px;
  animation: fadeIn 0.3s ease both;
}
.modal-backdrop.modal-hiding {
  animation: fadeOut 0.25s ease forwards;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.modal {
  background: linear-gradient(160deg, #FFFFFF 0%, var(--parchment-2) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 18px;
  box-shadow: 0 24px 60px -16px rgba(60,30,10,0.35), 0 8px 24px -8px rgba(60,30,10,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  animation: slideDown 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(135deg, rgba(123,21,21,0.04), rgba(201,162,39,0.07));
}
.modal-header-left { display: flex; align-items: center; gap: 10px; }
.modal-header-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(123,21,21,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.modal-title { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.modal-title em { color: var(--maroon); font-style: italic; }
.modal-subtitle { font-size: 11px; color: var(--muted-3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.modal-close {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--cream); color: var(--maroon); }
.modal-body { padding: 20px 22px 16px; }
.modal-ornament-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.modal-ornament-bar span { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.modal-ornament-bar svg { color: var(--gold); }
.modal-body p { font-family: var(--font-marathi); font-size: 14.5px; line-height: 1.75; color: var(--ink-2); margin: 0; }
.modal-body p + p { margin-top: 10px; }
.modal-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--border-soft);
}
.modal-btn-cancel {
  padding: 8px 18px; border-radius: 999px;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s;
}
.modal-btn-cancel:hover { background: var(--cream); }
.modal-btn-ok {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border: none; color: var(--gold-light);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  box-shadow: 0 6px 18px -4px rgba(123,21,21,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.modal-btn-ok:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -4px rgba(123,21,21,0.45); }



@media (max-width: 767px) {
  .inside-hero {
    min-height: 220px;
  }
}

.inset-figure {
  float: left;
  margin: 4px 18px 8px 0;
  width: min-content;
}
.inset-figure .inset-img {
  float: none; /* remove float from img, figure handles it now */
  margin: 0;
  display: block;
}
.inset-figure figcaption {
  width:100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted-3);
  line-height: 1.5;
  padding: 6px 8px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 162, 39, 0.06);
  border-radius: 0 4px 4px 0;
  margin-top: 15px;
  font-style: italic;
}



/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 6px 20px -4px rgba(123, 21, 21, 0.45), inset 0 1px 0 rgba(255,255,255,0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  box-shadow: 0 10px 26px -4px rgba(123, 21, 21, 0.55);
  transform: translateY(-2px);
}




/* ===== ARTICLE CARD RESPONSIVE ===== */
@media (max-width: 767px) {
  .article-card {
    padding: 16px 14px;
  }

  .article-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .inset-figure {
    float: none;
    width: 100%;
    margin: 0 0 14px 0;
  }

  .inset-figure .inset-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }

  .body-text {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }

  .dropcap {
    font-size: 34px;
  }

  .pullquote {
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .pullquote p {
    font-size: 14px;
  }
}


/* ===== ARTICLE CARD TABLET ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .article-card {
    padding: 18px 16px;
  }

  .article-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .inset-figure {
    float: none;
    width: 100%;
    margin: 0 0 16px 0;
  }

  .inset-figure .inset-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
  }

  .body-text {
    font-size: 13.5px;
    line-height: 1.8;
    text-align: left;
  }

  .pullquote p {
    font-size: 15px;
  }
}

.scroll-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
}