                                :root {
  --surface: rgba(255, 252, 247, 0.82);
  --ink: #1f1a17;
  --muted: #6b5d55;
  --accent: #9e2f1a;
  --border: rgba(74, 49, 39, 0.14);
  --shadow: 0 24px 70px rgba(63, 38, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;

  /* ── FONT FAMILIES ───────────────────────────────────────────────────
     Primary body font: Tiro Devanagari Hindi — renders both Devanagari
     script and Latin characters beautifully. Cormorant Garamond is kept
     for large display headings only (purely decorative Latin headings).
  ──────────────────────────────────────────────────────────────────── */
  --ff-body: "Tiro Devanagari Hindi", Georgia, serif;
  --ff-display: "Cormorant Garamond", "Tiro Devanagari Hindi", Georgia, serif;
  --ff-ui: "Tiro Devanagari Hindi", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(158, 47, 26, 0.13), transparent 30%),
    radial-gradient(circle at top right, rgba(34, 90, 77, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ebdc 100%);
  /* Tiro Devanagari Hindi as the universal body font */
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── LAYOUT SHELL ────────────────────────────────────────────────────────
   site-shell is full viewport height, header/footer are full width.
   Only .page-content is constrained by default (pages can override).
──────────────────────────────────────────────────────────────────────── */
html,
body {
  height: 100%;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* Header: full width, NOT constrained */
.site-header {
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

/* Main content: constrained to container by default */
.page-content {
  flex: 1;
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  padding-bottom: 52px;
}

/* Footer: full width, NOT constrained */
.site-footer {
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: 40px;
}

/* ── TOPBAR ───────────────────────────────────────────────────────────── */
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── NAVBAR ───────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 18px;
  backdrop-filter: blur(20px);
  background: rgba(255, 249, 241, 0.82);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  /* stretch across full header width */
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent), #d26b2c);
  color: #fff7f1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.brand img {
    height: 90px;
    width: auto;
    max-width: 400px;
    display: block;
    object-fit: contain;
}
.brand {
    margin-left: 60px; /* shift the whole logo block leftward */
}

@media (max-width: 768px) {
    .brand img {
        height: 40px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .brand img {
        height: 34px;
        max-width: 180px;
    }
}
.brand__text strong {
  font-size: 1.02rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: rgba(158, 47, 26, 0.08);
}

.nav-actions {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d26b2c);
  box-shadow: 0 14px 24px rgba(158, 47, 26, 0.2);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.55);
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.hero__content,
.hero__media,
.panel,
.card,
.notice,
.stat,
.faq-item,
.timeline-item,
.feature-card,
.form-shell,
.table-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__content {
  padding: 42px;
  border-radius: var(--radius-lg);
}

.hero__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(31, 26, 23, 0.6));
}

.hero__body,
.section-heading p,
.card p,
.panel p,
.feature-card p,
.faq-item p,
.timeline-item p {
  color: var(--muted);
  
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.7rem;
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 20px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.panel,
.faq-item,
.timeline-item,
.feature-card,
.form-shell,
.table-card,
.stat {
  padding: 24px;
  border-radius: var(--radius-md);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 47, 26, 0.16), transparent 70%);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.2rem;
  font-family: "Cormorant Garamond", serif;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.meta-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(158, 47, 26, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.issue-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.issue-card .meta,
.timeline-item .meta {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1f4f49, #122d2b);
  color: #f7f2e8;
  box-shadow: var(--shadow);
}

.cta-banner p {
  margin: 0;
  color: rgba(247, 242, 232, 0.8);
}

.cta-banner .button--primary {
  background: #f5d7c1;
  color: #441a0e;
}

.notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
}

.notice--success {
  border-color: rgba(37, 113, 65, 0.24);
  background: rgba(232, 247, 237, 0.92);
}

.notice--error {
  border-color: rgba(158, 47, 26, 0.24);
  background: rgba(255, 238, 231, 0.92);
}

.form-shell {
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(74, 49, 39, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(158, 47, 26, 0.18);
  border-color: rgba(158, 47, 26, 0.4);
}

.helper-text {
  font-size: 0.92rem;
  color: var(--muted);
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table-card th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

/* ── MEMBERSHIP PLANS STRIP ─────────────────────────────────────────── */
.site-membership-plans {
  margin: 0 0 24px;
}

.site-membership-plans__inner {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(212, 169, 106, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(26, 21, 17, 0.96), rgba(55, 35, 25, 0.96));
  color: rgba(255, 249, 241, 0.92);
  box-shadow: var(--shadow);
}

.site-membership-plans__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a96a;
}

.site-membership-plans__copy h3 {
  margin: 0;
  color: #fff;
}

.site-membership-plans__copy p {
  margin: 10px 0 0;
  max-width: 64ch;
  color: rgba(255, 249, 241, 0.72);
}

.site-membership-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.site-membership-plan-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(12px);
}

.site-membership-plan-card__name {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a96a;
}

.site-membership-plan-card__price {
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  color: #fff;
}

.site-membership-plan-card__term {
  margin-top: 4px;
  font-size: 0.84rem;
  color: rgba(255, 249, 241, 0.74);
}

.site-membership-plan-card p {
  margin: 12px 0 0;
  color: rgba(255, 249, 241, 0.8);
  line-height: 1.65;
}

.site-membership-plan-card__note {
  margin-top: 14px;
  display: inline-flex;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(212, 169, 106, 0.14);
  border: 1px solid rgba(212, 169, 106, 0.26);
  color: #f2d3a5;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-membership-plans__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(26, 21, 17, 0.95);
  color: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow);
}

.site-footer__grid h3,
.site-footer__grid h4 {
  color: #fff;
}

.site-footer__grid a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 250, 242, 0.74);
}

.site-footer__visitor-summary {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.07);
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.site-footer__visitor-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a96a;
}

.site-footer__visitor-total {
  display: block;
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff;
}

.site-footer__visitor-note {
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.84rem;
  line-height: 1.6;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding: 16px 4px 0;
  color: var(--muted);
  text-align: center;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions {
    margin-left: 0;
  }

  .hero,
  .grid--3,
  .site-membership-plans__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: clamp(.75rem, 3vw, 1.5rem);
  }

  .site-footer {
    padding-inline: clamp(.75rem, 3vw, 1.5rem);
  }

  .page-content {
    width: min(var(--container), calc(100% - 20px));
  }

  .topbar {
    flex-direction: column;
  }

  .brand__text small {
    white-space: normal;
  }

  .hero__content,
  .hero__media,
  .card,
  .panel,
  .faq-item,
  .timeline-item,
  .feature-card,
  .form-shell,
  .table-card,
  .stat {
    padding: 20px;
  }

  .grid--2,
  .form-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL TIRO DEVANAGARI HINDI ENFORCEMENT
   Ensures the font applies to every element including inputs, buttons,
   nav links, footer, and any third-party overrides. This block must
   stay at the end of the file so it wins specificity battles.
══════════════════════════════════════════════════════════════════════ */

/* Universal inheritance — every element gets the font from <body> */
*,
*::before,
*::after {
  font-family: inherit;
}

/* Explicitly set on elements that browsers typically don't inherit into */
input,
select,
textarea,
button,
.button,
.nav-link,
.nav-toggle,
.brand__text strong,
.brand__text small,
.topbar,
.topbar__meta,
.eyebrow,
.site-footer__grid,
.site-footer__grid a,
.site-footer__bottom,
label {
  font-family: var(--ff-body);
}

/* Keep Cormorant Garamond only for display headings */
h1,
h2,
h3,
.brand__mark,
.stat strong {
  font-family: var(--ff-display);
}

/* h4 and below use Tiro Devanagari Hindi for better readability at small sizes */
h4,
h5,
h6 {
  font-family: var(--ff-body);
  font-weight: 700;
}

/* Boost base font size slightly — Tiro Devanagari Hindi
   reads best at 16px+ compared to Manrope which was fine at 15px */
body {
  font-size: 1rem;
}

/* Devanagari script renders at correct visual weight with these tweaks */
:lang(hi),
:lang(sa) {
  font-family: "Tiro Devanagari Hindi", Georgia, serif;
  line-height: 1.9;
  /* Devanagari needs more line-height for matras */
}
/* ── MEMBERSHIP PLANS FOOTER SECTION ─────────────────────────────── */
.site-membership-plans {
    background: #1f1a17;
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.site-membership-plans__inner {
    width: min(1180px, 100%);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.site-membership-plans__eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d4a96a;
    margin-bottom: .6rem;
}
.site-membership-plans__copy h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #fdf8f0;
    margin: 0 0 .6rem;
}
.site-membership-plans__copy p {
    font-size: .88rem;
    color: rgba(253,248,240,.55);
    max-width: 60ch;
    line-height: 1.75;
    margin: 0 0 2rem;
}
.site-membership-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.site-membership-plan-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,169,106,.2);
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    position: relative;
    overflow: hidden;
    transition: background .2s, border-color .2s;
}
.site-membership-plan-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(212,169,106,.45);
}
.site-membership-plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9e2f1a, #d26b2c);
    opacity: 0;
    transition: opacity .2s;
}
.site-membership-plan-card:hover::before { opacity: 1; }
.site-membership-plan-card__name {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #d4a96a;
    margin-bottom: .5rem;
}
.site-membership-plan-card__price {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fdf8f0;
    line-height: 1;
    margin-bottom: .25rem;
}
.site-membership-plan-card__term {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(253,248,240,.4);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.site-membership-plan-card p {
    font-size: .82rem;
    color: rgba(253,248,240,.55);
    line-height: 1.65;
    margin: 0;
}
.site-membership-plan-card__note {
    margin-top: .6rem;
    font-size: .75rem;
    color: #e07c5a;
    font-weight: 600;
}
.site-membership-plans__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.site-membership-plans__actions .button--ghost {
    color: #fdf8f0;
    border-color: rgba(255,255,255,.25);
}
.site-membership-plans__actions .button--ghost:hover {
    border-color: #d4a96a;
    color: #d4a96a;
}

@media (max-width: 900px) {
    .site-membership-plans__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .site-membership-plans__grid { grid-template-columns: 1fr; }
}            
