:root {
  --ink: #1d241f;
  --muted: #5e665f;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --surface-2: #efe7db;
  --line: #ddd2c2;
  --saffron: #b8672e;
  --green: #4f735f;
  --deep-green: #2f3d34;
  --maroon: #713f35;
  --gold: #d8a64f;
  --shadow: 0 18px 45px rgba(54, 43, 28, 0.12);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(184, 103, 46, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid rgba(221, 210, 194, 0.85);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-title {
  display: block;
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--maroon);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(47, 61, 52, 0.98) 0%, rgba(76, 112, 93, 0.95) 58%, rgba(93, 133, 111, 0.9) 100%),
    radial-gradient(circle at 78% 44%, rgba(246, 217, 157, 0.18), rgba(246, 217, 157, 0) 34%),
    url("../img/Gandhi Photo (GRF archive).jpeg");
  background-position: center, center, right 9% center;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 82%;
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 61, 52, 0) 0%, rgba(47, 61, 52, 0.08) 54%, rgba(47, 61, 52, 0.62) 100%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 56px;
  min-height: 610px;
  padding: 96px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f6d99d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading h2,
.quote-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 9vw, 7.5rem);
  line-height: 0.9;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #21180a;
}

.button-primary:hover {
  background: #efbd60;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.18rem;
}

.page-hero {
  background: linear-gradient(100deg, var(--maroon), var(--green));
  color: #fff;
  padding: 82px 0 70px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.prose {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.prose p {
  margin: 0;
  color: #3f4741;
  font-size: 1.04rem;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  margin-top: 28px;
  padding: 28px;
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  background: var(--maroon);
  color: #fff;
}

.quote-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.quote-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.stream-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stream-card,
.document-card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(54, 43, 28, 0.08);
}

.stream-visual {
  display: block;
  overflow: hidden;
  min-height: 210px;
  margin-bottom: 20px;
  margin-top: 0;
  border: 1px solid rgba(47, 107, 79, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239, 231, 219, 0.72), rgba(255, 255, 255, 0.92));
}

.stream-visual img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.stream-visual-contain {
  display: grid;
  place-items: center;
  padding: 12px;
}

.stream-visual-contain img {
  height: 230px;
  object-fit: contain;
}

.stream-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(47, 107, 79, 0.12);
  color: var(--green);
  font-weight: 900;
}

.stream-card h3,
.document-card h3 {
  margin: 0 0 12px;
  color: var(--maroon);
  font-size: 1.25rem;
  line-height: 1.25;
}

.stream-card p,
.document-card p {
  margin: 0;
  color: var(--muted);
}

.resource-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.resource-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.resource-row h3 {
  margin: 0 0 5px;
  color: var(--maroon);
  font-size: 1.1rem;
}

.resource-row p {
  margin: 0;
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.documents {
  background: linear-gradient(180deg, var(--surface-2), var(--paper));
}

.document-card {
  display: flex;
  flex-direction: column;
  min-height: 218px;
}

.doc-type {
  width: max-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border: 1px solid rgba(184, 103, 46, 0.28);
  border-radius: 999px;
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.doc-link:hover {
  text-decoration: underline;
}

.infographic-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.infographic-preview img {
  width: 100%;
  height: auto;
}

.status-note {
  margin-top: 10px;
  color: var(--maroon);
  font-size: 0.94rem;
  font-weight: 700;
}

.connect-band {
  background: var(--green);
  color: #fff;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.connect-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.connect-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.subscribe-form input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 14px;
  font: inherit;
}

.subscribe-form button {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #21180a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
}

.form-note {
  font-size: 0.86rem;
}

.site-footer {
  background: #251d17;
  color: rgba(255, 255, 255, 0.75);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 36px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .connect-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 76px 0 58px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .stream-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .resource-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-subtitle {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-actions,
  .subscribe-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
