/* ══════════════════════════════════════════════════════════
   PUNE PAN ASSOCIATION — DESIGN SYSTEM
   Visual language adapted from mepanwala.com (deep green / cream /
   gold, Manrope-Inter-inspired hierarchy) and re-expressed for
   Devanagari-first content with Noto Serif/Sans Devanagari.
   Branding is text-only — there is no association logo/emblem, so no
   image-based brand mark exists anywhere in this stylesheet.
   Shared across index.html, privacy.html and terms.html.
   ══════════════════════════════════════════════════════════ */
:root {
  /* Institutional green scale — original Me Panwala palette */
  --green-950: #0b3f32; /* Deep Green */
  --green-900: #064e3b; /* Primary Dark Green */
  --green-800: #0f513f; /* Rich Green */
  --green-700: #146b4f;
  --green-600: #1d8760;

  /* Warm accents */
  --saffron: #d4af37; /* Gold */
  --saffron-dark: #c9a227; /* Warm Gold */
  --gold: #d4af37;
  --gold-light: #e8cc70;

  /* Neutrals */
  --ivory: #fcf9f1; /* Warm off-white */
  --cream: #f8f3e8; /* Cream */
  --pale-green: #eaf2ec;
  --white: #ffffff;

  /* Text */
  --text-dark: #173f34; /* Dark Text */
  --text-muted: #5c6d65;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);

  /* Structure */
  --border: #e6dfc9;
  --border-dark: rgba(212, 175, 55, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(11, 53, 40, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 53, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 53, 40, 0.2);

  --primary-gradient: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);

  --font-heading: "Noto Serif Devanagari", "Playfair Display", serif;
  --font-body: "Noto Sans Devanagari", "Inter", sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a { color: inherit; }
img { max-width: 100%; }

/* ── SHARED SECTION PRIMITIVES ── */
.section-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--saffron-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading-dark {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.35;
  letter-spacing: normal;
  word-spacing: normal;
  margin-bottom: 18px;
}

/* ── BUTTON SYSTEM ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--green-800);
  color: var(--green-800);
}
.btn-outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

/* Dark-background context (hero) */
.hero .btn-primary {
  background: var(--saffron);
  color: var(--green-950);
  box-shadow: 0 10px 26px rgba(11, 53, 40, 0.35);
}
.hero .btn-primary:hover {
  background: var(--gold-light);
}
.hero .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* ── NAVBAR (shared across all pages) ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green-950);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}

/* Text-only brand mark: a gold accent rule stands in for a logo. */
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  white-space: normal;
}

.navbar-brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Hamburger toggle (mobile) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggle:focus-visible,
.lang-btn:focus-visible,
.navbar-links a:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-body);
  background: transparent;
  border: none;
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
  background: var(--saffron);
  color: var(--green-950);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-950) 100%);
  padding: 56px 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1.5px,
    transparent 1.5px,
    transparent 26px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-text { max-width: 620px; }

.hero-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.28;
  letter-spacing: normal;
  word-spacing: normal;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-on-dark);
  letter-spacing: normal;
  word-spacing: normal;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual — a text-only "nameplate" panel stands in for a logo, since
   the association has none. Cream card, thin gold border, gold rule
   dividing the Devanagari and English name — no icon, no emblem. */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nameplate {
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 44px 30px;
  background: var(--ivory);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-nameplate::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  z-index: -1;
}

.hero-nameplate-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-nameplate-rule:last-child {
  margin: 18px auto 0;
}

.hero-nameplate-mr {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.35;
  color: var(--green-900);
}

.hero-nameplate-en {
  display: block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}

/* ── SECTION DIVIDER MOTIF ── */
.about-section,
.initiative-section,
.contact-section {
  position: relative;
}

.about-section::before,
.initiative-section::before,
.contact-section::before {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── ABOUT / ORGANIZATION SECTION ── */
.about-section {
  background: var(--cream);
  padding: 84px 32px;
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .about-body { margin-left: auto; margin-right: auto; }
.about-inner .about-pillars { max-width: 480px; margin: 0 auto; }

.about-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  letter-spacing: normal;
  word-spacing: normal;
  margin-bottom: 30px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.about-pillars li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.about-pillar-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── ME PANWALA INITIATIVE SECTION ── */
.initiative-section {
  background: var(--pale-green);
  padding: 84px 32px;
}

.initiative-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 52px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.initiative-card .section-tag { margin-bottom: 24px; }

.initiative-body {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.initiative-logo-frame {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.initiative-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.initiative-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 14px;
}

.initiative-content p {
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: normal;
  word-spacing: normal;
  margin-bottom: 10px;
}

.initiative-note {
  font-family: "Inter", sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700;
  color: var(--saffron-dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em !important;
  margin-bottom: 22px !important;
}

.initiative-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--ivory);
  padding: 84px 32px;
}
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.contact-text p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  letter-spacing: normal;
  word-spacing: normal;
}

.contact-org-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  margin-bottom: 28px !important;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-card > div {
  min-width: 0;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--pale-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; fill: var(--green-800); }
.contact-card-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--saffron-dark);
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.contact-card-value,
.contact-card-value a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-card-value a:hover { color: var(--green-800); text-decoration: underline; }
.contact-card-value-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── FOOTER ── */
.footer {
  background: var(--green-950);
  padding: 60px 32px 0;
}
.footer-top {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}
.footer-brand-text {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.footer-brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
}
.footer-brand-contact {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand-contact a,
.footer-brand-contact span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand-contact a:hover { color: var(--gold-light); }

.footer-links-col h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
}
.footer-links-col a,
.footer-links-col span {
  display: block;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-divider { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; }

/* ══════════════════════════════════════════════════════════
   LEGAL DOCUMENT PAGES (privacy.html / terms.html)
   Reuses the navbar + footer above; adds a sidebar + document card
   layout for the long-form content area.
   ══════════════════════════════════════════════════════════ */
.legal-main {
  max-width: 1140px;
  margin: 3rem auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 106px;
  height: fit-content;
}

.legal-sidebar-title {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron-dark);
  margin-bottom: 18px;
}

.legal-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-sidebar-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all 0.2s ease;
}

.legal-sidebar-menu a:hover {
  color: var(--green-900);
  border-left-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.doc-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.doc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}

.doc-meta {
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-family: "Inter", sans-serif;
}

.doc-section {
  scroll-margin-top: 110px;
  margin-bottom: 2.5rem;
}

.doc-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doc-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--primary-gradient);
  border-radius: 2px;
  flex-shrink: 0;
}

.doc-section p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.85;
}

.doc-section ul {
  list-style: none;
  margin-bottom: 1.1rem;
  padding-left: 0.25rem;
}

.doc-section li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.75;
}

.doc-section li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

.callout-box {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.75rem 0;
}
.callout-box p {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
}

.doc-contact-block {
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.9;
}
.doc-contact-block a { color: var(--green-700); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-nameplate { width: 260px; }

  .contact-inner { grid-template-columns: 1fr; gap: 36px; }

  .legal-main { grid-template-columns: 220px 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .navbar-toggle { display: flex; }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-950);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .navbar-menu.open {
    max-height: 420px;
    padding: 20px 24px 28px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .lang-switcher { align-self: flex-start; }

  .initiative-body { flex-direction: column; text-align: center; }
  .initiative-content { text-align: center; }
  .initiative-cta-group { justify-content: center; }

  .legal-main { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
}

@media (max-width: 768px) {
  body { padding-top: 72px; }
  .navbar-inner { padding: 10px 18px; gap: 14px; }
  .navbar-brand-name { font-size: 0.98rem; }
  .navbar-brand-sub { font-size: 0.66rem; }

  .hero { padding: 44px 22px; }
  .hero-inner { min-height: auto; }

  .about-section,
  .initiative-section,
  .contact-section { padding: 56px 22px; }
  .initiative-card { padding: 34px 24px; }

  .footer { padding: 48px 22px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-brand-text {
    border-left: none;
    border-top: 2px solid var(--gold);
    padding-left: 0;
    padding-top: 10px;
  }
  .footer-brand-contact { align-items: center; }
  .footer-links-col { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .legal-main { padding: 0 18px; margin: 2rem auto; }
  .doc-card { padding: 1.75rem; }
  .doc-title { font-size: 1.8rem; }
}

@media (max-width: 380px) {
  .navbar-inner { padding: 8px 14px; gap: 10px; }
  .navbar-brand-name { font-size: 0.85rem; }
  .navbar-toggle { width: 34px; height: 34px; }
}
