:root {
  color-scheme: light;
  --font-en: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-gu: 'Noto Sans Gujarati', 'Inter', system-ui, sans-serif;
  --saffron: #FF9933;
  --saffron-deep: #D35400;
  --saffron-tint: #FFF3E1;
  --green: #128807;
  --ink: #201607;
  --ink-soft: #55493c;
  --paper: #FFFDF8;
  --line: #F0E1C9;
  font-family: var(--font-en);
  background: var(--paper);
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Bilingual toggle */
.lang-gu {
  font-family: var(--font-gu);
}
html[data-lang="en"] .lang-gu { display: none; }
html[data-lang="gu"] .lang-en { display: none; }
.hindi-name.lang-gu { display: inline; }
html[data-lang="en"] .hindi-name.lang-gu { display: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
  top: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.brand small {
  display: block;
  color: var(--saffron-deep);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  order: 2;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--saffron-tint);
  border: 1px solid var(--saffron);
  color: var(--saffron-deep);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}
.lang-toggle .lang-sep {
  color: var(--saffron);
  opacity: 0.6;
}
html[data-lang="en"] .lang-toggle .lang-en,
html[data-lang="gu"] .lang-toggle .lang-gu {
  color: var(--ink);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--ink);
  border-radius: 2px;
}
nav#site-nav {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  order: 3;
  width: 100%;
}
nav#site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
nav#site-nav a:hover,
nav#site-nav a.active {
  border-bottom-color: var(--saffron);
  color: var(--saffron-deep);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.button.primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(211, 84, 0, 0.55);
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(211, 84, 0, 0.6);
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.button.secondary:hover {
  border-color: var(--saffron);
  color: var(--saffron-deep);
}

/* Eyebrow / headings */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--saffron-deep);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}
h1, h2, h3 {
  margin: 0;
}
h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.section-heading {
  max-width: 46rem;
  margin-bottom: 2.25rem;
}
.section-heading.gallery-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-heading.gallery-heading > div {
  max-width: 46rem;
}
.section-intro {
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--saffron-tint), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.kicker {
  display: inline-flex;
  background: var(--saffron-tint);
  color: var(--saffron-deep);
  border: 1px solid var(--saffron);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
}
.hero-role {
  color: var(--green);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0.6rem 0 0;
}
.hero-copy {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 1rem 0 0;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2.25rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 0.25rem;
}
.hero-meta dd {
  margin: 0;
  font-weight: 800;
  font-size: 1.02rem;
}
.hero-photo-card {
  margin: 0;
  background: var(--ink);
  border-radius: 26px;
  padding: 0.6rem;
  box-shadow: 0 40px 70px -30px rgba(32, 22, 7, 0.45);
}
.hero-photo-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}
.hero-photo-card figcaption {
  color: #f4e9d8;
  font-size: 0.82rem;
  padding: 0.9rem 0.6rem 0.4rem;
  line-height: 1.5;
}

/* About */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: var(--saffron-tint);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.intro-grid p {
  color: var(--ink-soft);
}
.intro-grid p + p {
  margin-top: 1rem;
}
.profile-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -35px rgba(32, 22, 7, 0.3);
}
.profile-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}
.profile-panel dl {
  margin: 0;
  padding: 1.5rem;
  display: grid;
  gap: 1.1rem;
}
.profile-panel dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron-deep);
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.profile-panel dd {
  margin: 0;
  font-weight: 700;
}

/* Programs */
.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.initiative-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.85rem;
  position: relative;
}
.initiative-card span {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--saffron);
  background: var(--saffron-tint);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}
.initiative-card p {
  color: var(--ink-soft);
  margin: 0.6rem 0 0;
}

/* Contributions */
.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.contribution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.85rem;
  border-left: 4px solid var(--green);
}
.contribution-card p {
  color: var(--ink-soft);
  margin: 0.6rem 0 0;
}
.contribution-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 52rem;
  border-left: 3px solid var(--saffron);
  padding-left: 1rem;
}
.rhythm-block {
  margin-top: 3rem;
}
.rhythm-heading {
  margin-bottom: 1.5rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.timeline > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}
.timeline strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--saffron-deep);
}
.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* AI section */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ai-grid p {
  color: var(--ink-soft);
  margin: 1rem 0 1.75rem;
}
.ai-console {
  background: var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(32, 22, 7, 0.5);
}
.console-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: #140d02;
}
.console-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4a3c26;
}
.console-header span:first-child {
  background: #e0664c;
}
.console-header span:nth-child(2) {
  background: #e8b84b;
}
.console-header span:last-child {
  background: #6cc06c;
}
.console-body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.console-body p {
  color: #f4e9d8;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.console-body p:last-child {
  margin-bottom: 0;
}
.console-body strong {
  color: var(--saffron);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 1rem 1.1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Connect */
.connect-section {
  background: var(--ink);
  color: #fff;
}
.connect-section .eyebrow {
  color: var(--saffron);
}
.connect-section p {
  color: #d8c9ac;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.connect-card {
  background: #2b1e0c;
  border: 1px solid #4a3c26;
  border-radius: 24px;
  padding: 2rem;
}
.connect-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron);
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.connect-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}
.connect-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.connect-section .button.secondary {
  background: transparent;
  color: #fff;
  border-color: #4a3c26;
}
.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #4a3c26;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--saffron);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.social-links a:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  background: #140d02;
  color: #b7a888;
  padding: 1.75rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-inner p {
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .ai-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }
  .initiative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contribution-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
    order: 1;
  }
  .header-actions {
    order: 2;
  }
  nav#site-nav {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
    transition: max-height 0.3s ease;
    order: 4;
  }
  nav#site-nav.is-open {
    max-height: 400px;
    padding-bottom: 0.75rem;
  }
  nav#site-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    padding: 2rem 0 2.5rem;
  }
  .hero-meta {
    gap: 1.25rem;
  }
  .initiative-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .connect-number {
    font-size: 1.5rem;
  }
}
