@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Marcellus&family=Noto+Sans+Devanagari:wght@400;500;700&display=swap");

:root {
  --bg: #f5ede0;
  --bg-deep: #eadcc7;
  --paper: rgba(255, 249, 240, 0.78);
  --paper-strong: rgba(255, 250, 244, 0.9);
  --text: #223126;
  --muted: #5f6f62;
  --line: rgba(34, 49, 38, 0.12);
  --forest: #1b3a2d;
  --sage: #98aa83;
  --sage-deep: #6f845c;
  --terracotta: #b86a3c;
  --gold: #d5b36c;
  --shadow-soft: 0 18px 50px rgba(51, 46, 31, 0.12);
  --shadow-deep: 0 30px 80px rgba(34, 26, 14, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 179, 108, 0.34), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(152, 170, 131, 0.26), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 38%),
    radial-gradient(circle at 72% 82%, rgba(184, 106, 60, 0.08), transparent 16%),
    radial-gradient(circle at 18% 78%, rgba(111, 132, 92, 0.12), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

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

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

figure {
  margin: 0;
}

iframe {
  border: 0;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 26px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 246, 238, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  font-family: "Marcellus", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
  transform: translateY(-1px);
}

.nav-contact {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff !important;
}

.hero {
  padding: 34px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-grid > *,
.story-grid > *,
.practice-grid > *,
.contact-grid > * {
  min-width: 0;
}

.hero-copy,
.hero-visual,
.highlights-band,
.panel,
.panel-image,
.gallery-card,
.map-card {
  animation: rise 820ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 9px 15px;
  border: 1px solid rgba(27, 58, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marathi-inline,
.hero-translation,
.section-translation,
.note-translation,
.caption-mr,
.button small,
.footer-marathi {
  font-family: "Noto Sans Devanagari", sans-serif;
}

.marathi-inline {
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero h1,
.section-heading h2,
.practice-copy h2,
.contact-copy h2 {
  margin: 18px 0 18px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.45rem);
  max-width: 10.5ch;
}

.section-heading h2,
.practice-copy h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  max-width: 12ch;
}

.hero p,
.section-heading p,
.story-copy p,
.feature-card p,
.contact-copy p,
.band-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
}

.hero p {
  max-width: 37rem;
  font-size: 1.06rem;
}

.hero-translation {
  margin: -2px 0 18px;
  color: var(--sage-deep);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button span {
  display: block;
}

.button small {
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.82;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--terracotta), #cb8459);
  color: #fffaf4;
  box-shadow: 0 18px 38px rgba(184, 106, 60, 0.28);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 251, 245, 0.7);
  color: var(--forest);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.7);
  box-shadow: var(--shadow-soft);
}

.stat-card span,
.info-label,
.band-count {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.stat-card strong,
.info-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 14px 0 22px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -6px;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 179, 108, 0.34), rgba(213, 179, 108, 0));
  z-index: -1;
}

.hero-portrait,
.panel-image,
.gallery-card,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.hero-portrait {
  border-radius: 36px 120px 36px 36px;
  padding: 14px;
  background: rgba(255, 249, 242, 0.74);
}

.hero-portrait img,
.panel-image img,
.gallery-card img {
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  background: #d7cdc0;
}

.floating-note {
  max-width: none;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.88);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.note-translation {
  color: var(--sage-deep);
}

.highlights-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 90px;
}

.band-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.68);
  box-shadow: var(--shadow-soft);
}

.band-card h2 {
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.16;
}

.accent-card {
  background: linear-gradient(180deg, rgba(248, 242, 232, 0.94), rgba(242, 231, 212, 0.88));
  transform: translateY(24px);
}

.story-section,
.practice-section,
.gallery-section,
.contact-section {
  padding-bottom: 96px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading p,
.gallery-heading p {
  max-width: 32rem;
}

.story-grid,
.practice-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.story-grid,
.practice-grid {
  align-items: start;
}

.panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.info-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.info-card,
.feature-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.72);
}

.panel-image {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px;
  align-self: start;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 242, 0.78);
}

.story-image {
  aspect-ratio: auto;
}

.practice-image {
  aspect-ratio: auto;
}

.panel-image figcaption,
.gallery-card figcaption {
  padding: 14px 4px 4px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

.caption-en {
  display: block;
  color: var(--forest);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.caption-mr {
  display: block;
  margin-top: 2px;
  font-size: 0.92rem;
  color: var(--sage-deep);
}

.section-translation {
  margin: -6px 0 0;
  color: var(--sage-deep);
  line-height: 1.7;
}

.practice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: "Marcellus", serif;
  font-size: 1.38rem;
  font-weight: 400;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gallery-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px;
  align-self: start;
  border-radius: 30px;
  background: rgba(255, 249, 242, 0.78);
}

.gallery-shivir {
  grid-column: auto;
  grid-row: auto;
}

.gallery-group {
  grid-column: auto;
  grid-row: auto;
}

.gallery-elder {
  grid-column: auto;
  grid-row: auto;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--forest);
  line-height: 1.5;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(27, 58, 45, 0.24);
}

.map-card {
  min-height: 100%;
  border-radius: var(--radius-xl);
  background: #d7cdc0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 38px;
  color: var(--muted);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.footer-marathi {
  color: var(--sage-deep);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .story-grid,
  .practice-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-portrait,
  .story-image,
  .practice-image {
    aspect-ratio: auto;
  }

  .highlights-band {
    grid-template-columns: 1fr;
  }

  .accent-card {
    transform: none;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .site-header {
    position: sticky;
    top: 12px;
    flex-direction: column;
    align-items: start;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .button {
    align-items: flex-start;
  }

  .hero {
    padding: 18px 0 58px;
  }

  .hero-highlights,
  .info-grid,
  .feature-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 10px 0 0;
  }

  .hero-portrait {
    border-radius: 34px;
  }

  .floating-note {
    padding: 16px 18px;
  }

  .panel,
  .band-card {
    padding: 24px;
  }

  .section-heading h2,
  .practice-copy h2,
  .contact-copy h2,
  .hero h1 {
    max-width: none;
  }

  .gallery-shivir,
  .gallery-elder,
  .gallery-group {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card {
    min-height: 0;
  }

  .contact-list a,
  .contact-list span {
    padding: 14px 16px;
    min-height: auto;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .eyebrow {
    gap: 6px;
  }

  .hero-portrait,
  .story-image,
  .practice-image,
  .gallery-card {
    aspect-ratio: auto;
  }

  .map-card iframe {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
