:root {
  --ink: #25221f;
  --muted: #6b6259;
  --line: #ded6cc;
  --paper: #fffdf8;
  --soft: #f5efe5;
  --warm: #b45f2a;
  --deep: #7f2d23;
  --green: #426b58;
  --gold: #d6aa4b;
  --shadow: 0 18px 45px rgba(51, 37, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 7px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--deep);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 250px;
  gap: 12px;
  font-weight: 700;
  line-height: 1.25;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--warm);
  color: var(--deep);
}

.donate,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.donate,
.button.primary {
  color: #fff;
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: #fff;
  border: 1px solid rgba(127, 45, 35, 0.28);
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: end;
  padding: clamp(90px, 14vw, 170px) clamp(18px, 5vw, 72px) clamp(60px, 10vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 25, 18, 0.78), rgba(37, 25, 18, 0.42), rgba(37, 25, 18, 0.18)),
    url("https://www.pratishthanpune.in/wp-content/uploads/2024/06/IMG_20240608_162431-scaled.jpg") center / cover;
}

.page-hero {
  padding: clamp(82px, 12vw, 140px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 25, 18, 0.82), rgba(37, 25, 18, 0.46)),
    url("https://www.pratishthanpune.in/wp-content/uploads/2024/06/IMG_20240608_162431-scaled.jpg") center / cover;
}

.page-hero.small-hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--warm);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c66f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
}

.article-page h2:not(:first-child) {
  margin-top: 42px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.soft-band {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 900px;
}

.info-grid,
.media-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.media-card,
.timeline article,
.contact-card,
.benefit-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(52, 37, 22, 0.08);
}

.info-card,
.timeline article,
.contact-card,
.benefit-list {
  padding: 26px;
}

.info-card ul,
.benefit-list ul,
.two-column ul {
  padding-left: 20px;
}

.text-link,
.info-card a,
.contact-card a {
  color: var(--deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule {
  padding: 18px;
  margin: 22px 0;
  border-left: 4px solid var(--gold);
  background: #fff9ec;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(26px, 5vw, 72px);
  color: #fff;
  background: var(--green);
}

.split-band .section-kicker {
  color: #f0c76f;
}

.split-band .benefit-list {
  color: var(--ink);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-card h3,
.media-card p {
  padding: 0 20px;
}

.media-card h3 {
  margin-top: 18px;
}

.media-card p {
  color: var(--muted);
}

.gallery-band {
  background: #2f2925;
  color: #fff;
}

.gallery-band .section-kicker {
  color: #f0c76f;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

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

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-strip img {
  width: 100%;
  min-height: 310px;
  border-radius: 8px;
  object-fit: cover;
}

.compact {
  grid-template-columns: 0.7fr 1fr 1fr;
}

address {
  font-style: normal;
  padding: 20px;
  margin-top: 24px;
  background: var(--soft);
  border-left: 4px solid var(--warm);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-family: Arial, sans-serif;
}

.donate-band {
  padding: 58px clamp(18px, 5vw, 72px);
  text-align: center;
  color: #fff;
  background: var(--deep);
}

.donate-band h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.donate-band p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #1f1b18;
  font-family: Arial, sans-serif;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .donate {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
    top: 52px;
  }
}

@media (max-width: 820px) {
  .topbar,
  .header-inner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .donate {
    position: static;
  }

  .hero {
    min-height: 70vh;
    align-items: center;
  }

  .two-column,
  .two-column.reverse,
  .split-band,
  .info-grid,
  .media-grid,
  .timeline,
  .compact,
  .photo-strip,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 15px;
  }

  .main-nav {
    gap: 10px 16px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }
}
