@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,600;6..72,700&family=Noto+Sans+Devanagari:wght@400;500;700&display=swap");

:root {
  --ink: #17251e;
  --muted: #687568;
  --leaf: #173b2c;
  --leaf-soft: #2f6049;
  --moss: #839c74;
  --sun: #e9b44c;
  --clay: #c4693d;
  --cream: #fff9ef;
  --sand: #f1dfc4;
  --mist: rgba(255, 249, 239, 0.78);
  --line: rgba(23, 37, 30, 0.14);
  --shadow: 0 28px 80px rgba(55, 43, 25, 0.16);
  --soft-shadow: 0 16px 44px rgba(55, 43, 25, 0.1);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --page: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(233, 180, 76, 0.28), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(47, 96, 73, 0.18), transparent 22%),
    linear-gradient(180deg, #fffaf0 0%, #f5ead6 42%, #e8d4b7 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(23, 37, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 30, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 78%);
}

body::after {
  background:
    radial-gradient(circle at 18% 88%, rgba(196, 105, 61, 0.13), transparent 22%),
    radial-gradient(circle at 72% 76%, rgba(131, 156, 116, 0.16), transparent 26%);
}

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

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

figure {
  margin: 0;
}

iframe {
  border: 0;
}

.site-header,
main,
.site-footer {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 48px rgba(72, 52, 30, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff8ec;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 28px rgba(23, 59, 44, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Newsreader", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.64);
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 18px;
  background: var(--leaf);
  color: #fff9ef;
  box-shadow: 0 14px 28px rgba(23, 59, 44, 0.22);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: #0f2d20;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(239, 220, 189, 0.74)),
    radial-gradient(circle at top right, rgba(233, 180, 76, 0.2), transparent 30%);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(23, 59, 44, 0.16);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(23, 59, 44, 0.06));
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: lift 800ms ease both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: var(--leaf-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 15px;
  border: 1px solid rgba(23, 59, 44, 0.13);
  background: rgba(255, 255, 255, 0.58);
}

.section-kicker {
  margin-bottom: 16px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Newsreader", serif;
  font-weight: 650;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 10.2ch;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 7.4vw, 7.8rem);
  line-height: 0.85;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.78;
  text-wrap: pretty;
}

.hero-translation {
  margin-bottom: 18px;
  color: var(--leaf-soft);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-text {
  max-width: 42rem;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-soft));
  color: #fff9ef;
  box-shadow: 0 18px 38px rgba(23, 59, 44, 0.26);
}

.button.secondary {
  border-color: rgba(23, 37, 30, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--leaf);
  box-shadow: 0 14px 30px rgba(55, 43, 25, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(23, 37, 30, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  animation: lift 900ms 120ms ease both;
}

.sun-ring {
  position: absolute;
  inset: 26px 30px auto auto;
  width: min(28vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(233, 180, 76, 0.34) 0 40%, transparent 41%),
    repeating-conic-gradient(from 6deg, rgba(23, 59, 44, 0.2) 0 3deg, transparent 3deg 10deg);
  opacity: 0.9;
}

.hero-photo {
  align-self: stretch;
  overflow: hidden;
  border: 12px solid rgba(255, 252, 246, 0.84);
  border-radius: 40px;
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(48, 35, 19, 0.2);
}

.hero-photo img {
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 22px;
  max-width: 300px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: rgba(23, 59, 44, 0.92);
  color: #fff9ef;
  box-shadow: 0 22px 48px rgba(23, 59, 44, 0.28);
  backdrop-filter: blur(12px);
}

.hero-card span,
.practice-list span,
.quick-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 249, 239, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.78);
  line-height: 1.65;
}

.quick-grid,
.support-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding-bottom: 84px;
}

.quick-grid article,
.support-card,
.practice-list article,
.contact-panel,
.framed-photo,
.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 249, 239, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.quick-grid article,
.support-card,
.practice-list article {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.quick-grid article:nth-child(2) {
  background: rgba(23, 59, 44, 0.92);
  color: #fff9ef;
  transform: translateY(18px);
}

.quick-grid article:nth-child(2) h2,
.quick-grid article:nth-child(2) p {
  color: inherit;
}

.quick-grid span {
  color: var(--clay);
}

.quick-grid article:nth-child(2) span {
  color: rgba(255, 249, 239, 0.68);
}

.quick-grid h2,
.support-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.02;
}

.quick-grid p,
.support-card p,
.practice-list p {
  margin-bottom: 0;
}

.teacher-section,
.practice-section,
.gallery-section,
.contact-section {
  padding-bottom: 92px;
}

.teacher-grid,
.practice-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.section-copy {
  max-width: 680px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  max-width: 12ch;
}

.section-copy p {
  max-width: 42rem;
  font-size: 1.04rem;
}

.framed-photo,
.gallery-card {
  overflow: hidden;
  padding: 12px 12px 16px;
  border-radius: var(--radius-xl);
}

.framed-photo img,
.gallery-card img {
  border-radius: 28px;
  border: 1px solid rgba(23, 37, 30, 0.1);
  background: #fff;
}

.teacher-photo img,
.practice-photo img,
.gallery-card img {
  height: auto;
  object-fit: contain;
}

.framed-photo figcaption,
.gallery-card figcaption {
  padding: 14px 8px 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.practice-layout {
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

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

.practice-list article {
  min-height: 100%;
}

.practice-list span {
  color: var(--clay);
}

.support-section {
  grid-template-columns: 1.22fr repeat(3, minmax(0, 0.9fr));
}

.support-card.wide {
  background:
    linear-gradient(135deg, rgba(23, 59, 44, 0.95), rgba(47, 96, 73, 0.9)),
    radial-gradient(circle at top right, rgba(233, 180, 76, 0.3), transparent 30%);
  color: #fff9ef;
}

.support-card.wide h2,
.support-card.wide .section-kicker {
  color: inherit;
}

.support-card.wide .section-kicker {
  opacity: 0.78;
}

.support-card h3 {
  font-size: 1.55rem;
}

.gallery-heading h2 {
  max-width: 13ch;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.gallery-large {
  grid-row: span 2;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  padding: 16px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.86), rgba(239, 220, 189, 0.68)),
    radial-gradient(circle at bottom left, rgba(196, 105, 61, 0.18), transparent 32%);
}

.contact-copy {
  padding: 22px;
}

.contact-copy p {
  max-width: 38rem;
  font-size: 1.05rem;
}

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

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 37, 30, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--leaf);
  font-weight: 800;
  line-height: 1.45;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(23, 59, 44, 0.34);
  background: rgba(255, 255, 255, 0.84);
}

.map-card {
  overflow: hidden;
  min-height: 540px;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(23, 37, 30, 0.08);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 0 36px;
  color: var(--muted);
  font-weight: 700;
}

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

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 30px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero,
  .teacher-grid,
  .practice-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo img {
    min-height: 0;
  }

  .quick-grid,
  .support-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid article:nth-child(2) {
    transform: none;
  }

  .support-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 20px, 1180px);
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 12px;
  }

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

  .header-cta {
    width: 100%;
  }

  .hero {
    margin-top: 18px;
    padding: 20px;
    border-radius: 32px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

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

  .hero-photo {
    border-width: 8px;
    border-radius: 28px;
  }

  .hero-photo img,
  .framed-photo img,
  .gallery-card img {
    border-radius: 20px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .quick-grid,
  .practice-list,
  .support-section,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .support-section,
  .teacher-section,
  .practice-section,
  .gallery-section,
  .contact-section {
    padding-bottom: 64px;
  }

  .quick-grid article,
  .support-card,
  .practice-list article,
  .contact-copy {
    padding: 22px;
  }

  .gallery-large {
    grid-row: auto;
  }

  .contact-panel {
    padding: 10px;
    border-radius: 30px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --page: min(100% - 14px, 1180px);
  }

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

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 16px;
    border-radius: 26px;
  }

  .hero-proof span {
    width: 100%;
  }

  .quick-grid article,
  .support-card,
  .practice-list article {
    border-radius: 22px;
  }

  .framed-photo,
  .gallery-card {
    padding: 8px 8px 12px;
    border-radius: 24px;
  }

  .contact-list a,
  .contact-list span {
    padding: 13px 14px;
    font-size: 0.95rem;
  }
}

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

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