﻿:root {
  --ink: #17343b;
  --muted: #5d7478;
  --green: #033009;
  --leaf: #83b735;
  --yellow: #f5bd47;
  --orange: #ee785f;
  --blue: #1c9ed0;
  --paper: #fffdf7;
  --soft: #edf8f3;
  --line: #dbe8df;
  --shadow: 0 18px 42px rgba(23, 52, 59, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

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

.site-nav a:hover,
.site-nav a.active {
  color: white;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  width: calc(100% - 200px);
  max-width: none;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 54px 0 70px;
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  line-height: 1.02;
}

.home-hero h1 span,
.phrase-lines span {
  display: block;
  white-space: nowrap;
}

.home-hero p,
.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card {
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 245, 255, 0.86), rgba(221, 190, 249, 0.62) 46%, rgba(183, 112, 220, 0.58)),
    linear-gradient(160deg, #fbf7ff 0%, #ead7fb 38%, #c084dc 100%);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  background: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background: var(--green);
}

.btn.secondary {
  color: var(--green);
  background: white;
  border-color: var(--line);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 18px;
}

.buy-row {
  justify-content: center;
  margin: 24px 0 28px;
}

.buy-caption {
  display: block;
  width: 100%;
  margin: 18px 0 8px;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  line-height: inherit;
  text-align: center !important;
}

.buy-now-btn {
  min-width: 168px;
  min-height: 54px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  background: #033009;
  box-shadow: 0 14px 28px rgba(3, 48, 9, 0.22), 0 4px 0 rgba(3, 48, 9, 0.16);
  color: white;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.buy-now-btn:hover,
.buy-now-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(3, 48, 9, 0.28), 0 5px 0 rgba(3, 48, 9, 0.16);
}

.section,
.page-hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 54px 0;
}

.page-hero {
  padding: 76px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
}

.about-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.about-guru-figure {
  margin: 0;
}

.about-page-hero img {
  width: 100%;
  max-height: 360px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.about-guru-figure figcaption {
  margin-top: 10px;
  color: #033009;
  font-weight: 800;
  text-align: center;
}

.about-guru-figure figcaption span {
  display: block;
}

.split,
.program-grid,
.banana,
.contact-panel,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
}

.reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

h2 {
  margin: 0 0 14px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.12;
}

.purple-title {
  color: #7030a0;
}

.about-toggle-section p {
  text-align: justify;
}

.about-toc-section {
  padding-block: 42px;
}

.about-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about-toc a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: 0 8px 22px rgba(23, 52, 59, 0.06);
  font-weight: 800;
  text-decoration: none;
}

.about-toc a:hover,
.about-toc a:focus-visible {
  color: white;
  background: #033009;
}

.about-doc-page {
  display: grid;
  gap: 34px;
}

.about-doc-section {
  scroll-margin-top: 96px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.about-doc-section:last-child {
  border-bottom: 0;
}

.about-doc-section p {
  text-align: justify;
}

.corporate-doc-page p {
  text-align: justify;
}

.corporate-doc-page ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.corporate-doc-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.corporate-doc-gallery img,
.corporate-doc-final-image {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.corporate-doc-gallery img {
  max-height: 680px;
}

.corporate-doc-final-image {
  display: block;
  max-height: 620px;
  margin-top: 18px;
}

.corporate-contact-note {
  font-size: 1.2em;
  font-weight: 800;
}

.corporate-future-line {
  display: block;
  font-size: 1.2em;
  text-align: left !important;
  text-align-last: left;
}

.corporate-contact-note p {
  text-align: inherit;
}

.corporate-contact-note span {
  display: inline-block;
  margin-left: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  color: white;
  background: #033009;
}

.corporate-flexibility-section {
  text-align: center;
}

.corporate-flexibility-section img {
  margin-top: 50px;
}

.yoga-retreat-page p,
.yoga-retreat-page li {
  text-align: justify;
}

.yoga-retreat-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.yoga-retreat-gallery img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.yoga-retreat-large-image {
  display: block;
  width: 100%;
  max-height: 720px;
  margin-top: 26px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.yoga-asanas-section {
  margin-top: 54px;
}

.yoga-asanas-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--green-900);
}

.yoga-asanas-subtitle {
  max-width: 820px;
  margin: -10px auto 28px;
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
}

.yoga-asanas-grid {
  columns: 4 220px;
  column-gap: 14px;
}

.yoga-asanas-grid img {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.inline-toggle {
  display: inline;
  padding: 0;
  border: 0;
  color: #033009;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.about-toggle-section.is-expanded [data-toggle-role="more"] {
  display: none;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.maroon-question {
  color: #800000;
}

p {
  margin: 0 0 14px;
}

main p,
main li {
  text-align: justify;
}

.rounded-img,
.wide-img,
.stacked-images img,
.article-hero img,
.blog-gallery img,
.banana img,
.initiative-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rounded-img,
.article-hero img {
  max-height: 500px;
  object-fit: cover;
}

.image-feature {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-inline-image {
  margin: 20px 0 24px;
}

.wide-img {
  max-height: 520px;
  object-fit: cover;
}

.contain-img {
  object-fit: contain;
  background: white;
}

.sukshmavyayama-pic {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.sukshmavyayama-section {
  padding-block: 28px;
  background: white;
}

.consultation-section {
  margin-top: 34px;
  margin-bottom: 34px;
}

.consultation-section h2 {
  color: var(--ink);
  text-align: center;
}

.consultation-section p {
  text-align: justify;
}

.consultation-section h3 {
  color: #7030a0;
  font-family: "Lora", Georgia, serif;
  text-align: left;
}

.consultation-lead {
  font-size: 1.08rem;
  font-weight: 700;
  text-align: justify;
}

.consultation-flow,
.consultation-tagline,
.consultation-brand {
  font-weight: 800;
  text-align: center;
}

.consultation-flow {
  color: #033009;
}

.consultation-cta-line {
  margin: 4px 0 14px;
  font-weight: 800;
  text-align: center !important;
}

.consultation-tagline {
  color: #7030a0;
}

.consultation-img {
  display: block;
  height: auto;
  max-height: none;
  margin: 26px 0 24px;
  object-fit: contain;
}

.sukshma-doc-more {
  margin: 12px 0 24px;
}

.sukshma-doc-more h3 {
  margin-top: 22px;
}

.read-more-image {
  display: block;
  height: auto;
  max-height: none;
  margin: 22px 0;
  object-fit: contain;
}

.read-more summary {
  display: inline;
  margin: 4px 0 16px;
  padding: 0;
  color: #033009;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.read-more .less-label {
  display: none;
}

.read-more[open] .more-label {
  display: none;
}

.read-more[open] .less-label {
  display: inline;
}

.inline-link {
  display: inline;
  color: #033009;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-page ul,
.text-page ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.video-embed {
  width: 100%;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #102f37;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-carousel-track {
  grid-auto-columns: minmax(320px, 48%);
}

.video-carousel-track .video-embed {
  margin: 0;
  scroll-snap-align: start;
}

.video-gallery-tagline {
  margin-top: -4px;
  color: var(--muted);
  font-weight: 700;
}

.video-box {
  display: grid;
  place-items: center;
  min-height: 170px;
  border: 2px dashed #9bcfc0;
  border-radius: 8px;
  color: var(--muted);
  background: white;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 30, 34, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.color-band {
  width: min(1200px, calc(100% - 28px));
  padding: 52px clamp(18px, 4vw, 44px);
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf9ef, #fff4d8);
}

.soft {
  width: min(1200px, calc(100% - 28px));
  padding: 52px clamp(18px, 4vw, 44px);
  border-radius: 8px;
  background: #ECEAF3;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.centered-section-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two,
.initiative-grid,
.blog-gallery {
  grid-template-columns: repeat(2, 1fr);
}

.cards article,
.initiative-card,
.contact-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 52, 59, 0.08);
}

.wellness-initiative-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.wellness-initiative-cards img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  object-fit: fill;
}

.wellness-initiative-cards h3,
.wellness-initiative-cards p {
  margin: 0;
}

.initiative-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 24%);
  align-items: center;
  gap: 18px;
}

.initiative-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.initiative-card-logo {
  width: 100%;
  height: 100%;
  min-height: 120px;
  border-radius: 8px;
  object-fit: contain !important;
  background: white;
}

.employee-highlight {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(3, 48, 9, 0.18);
  border-radius: 8px;
  color: #033009;
  background: rgba(3, 48, 9, 0.07);
  font-weight: 700;
}

.employee-highlight strong {
  font-size: 1.18rem;
}

.initiative-read-more {
  width: max-content;
  margin-top: 6px;
}

.appreciation-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}

.appreciation-feature > h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.appreciation-photo {
  width: 100%;
  height: auto;
  max-height: 640px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.appreciation-copy p {
  text-align: justify;
}

.appreciation-mobile-toggle,
.appreciation-mobile-more {
  display: none;
}

.global-reach-mobile-intro,
.global-reach-mobile-extra {
  display: none;
}

.global-reach-section p {
  text-align: justify;
}

.health-happiness-section p {
  text-align: justify;
}

.honours-section {
  display: grid;
  gap: 24px;
}

.honours-head {
  max-width: 820px;
}

.honours-head p {
  color: #033009;
  font-size: 1.18rem;
  font-weight: 800;
}

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

.honours-media-grid img {
  width: 100%;
  height: min(68vw, 680px);
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.honours-copy {
  display: grid;
  gap: 8px;
  max-width: 900px;
}

.honours-copy h3,
.honours-copy p {
  margin: 0;
}

.bottom-brand-section {
  padding-top: 36px;
}

.anti-inflammatory-section {
  padding-bottom: 24px;
}

.anti-inflammatory-section p {
  max-width: 980px;
  text-align: justify;
}
.bottom-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.bottom-brand-grid img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.banana {
  width: min(1200px, calc(100% - 28px));
  padding: 48px clamp(18px, 4vw, 44px);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff4d2, #fbe8de);
}

.banana img {
  max-height: 360px;
  object-fit: contain;
  background: white;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 33%);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
}

.carousel-track img,
.gallery-item img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 28px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: -12px;
}

.carousel-btn.next {
  right: -12px;
}

.carousel-play {
  position: absolute;
  right: 8px;
  bottom: 28px;
  z-index: 2;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.text-page {
  max-width: none;
}

.text-page h2 {
  margin-top: 32px;
}

.text-page h3 {
  margin-top: 24px;
}

.initiative-grid,
.blog-gallery {
  display: grid;
  gap: 24px;
}

.initiative-card {
  display: grid;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.initiative-card img {
  width: 100%;
  height: 290px;
  object-fit: fill;
}

.initiative-card span {
  color: var(--muted);
  font-weight: 700;
}

.initiative-card strong {
  font-size: 1.35rem;
}

.initiative-card p {
  margin: 0;
  color: var(--muted);
}

.initiative-card em {
  color: #033009;
  font-style: normal;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.initiative-card.warm {
  background: #fff1df;
}

.initiative-card.cool {
  background: #eaf8f9;
}

.article-hero {
  border-bottom: 0;
}

.article-hero img {
  max-height: 360px;
}

.initiative-detail-hero img {
  object-fit: cover;
}

.campaign-meta {
  color: var(--ink) !important;
  font-weight: 800;
}

.initiative-detail {
  max-width: min(1040px, calc(100% - 36px));
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px 0 32px;
}

.detail-gallery img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.document-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.document-image-gallery img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 30px;
}

.practice-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(23, 52, 59, 0.07);
}

.practice-grid h3 {
  margin-top: 0;
}

.stacked-images {
  display: grid;
  gap: 18px;
}

.stacked-images img {
  max-height: 320px;
  object-fit: cover;
}

.blog-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.blog-gallery img {
  height: 380px;
  object-fit: cover;
}

.contact-panel {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #c9dad5;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fbfffd;
}

.form-note {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact p {
  font-weight: 800;
}

.footer-email-btn {
  min-height: 40px;
  padding: 9px 18px;
}

.site-footer a:not(.btn) {
  color: white;
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .home-hero,
  .about-page-hero,
  .split,
  .program-grid,
  .reverse,
  .banana,
  .contact-panel,
  .article-hero,
  .appreciation-feature,
  .video-grid,
  .cards.three,
  .cards.two,
  .honours-media-grid,
  .bottom-brand-grid,
  .corporate-doc-gallery,
  .yoga-retreat-gallery,
  .detail-gallery,
  .document-image-gallery,
  .practice-grid,
  .initiative-grid,
  .blog-gallery {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 36px;
    text-align: left;
  }

  .home-hero .hero-text {
    margin-left: 60px;
  }

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .about-toc {
    grid-template-columns: 1fr;
  }

  .corporate-contact-note,
  .corporate-contact-note p,
  .corporate-future-line {
    text-align: left;
  }

  .carousel-btn {
    display: grid;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  .carousel-play {
    right: 12px;
    bottom: 26px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  .home-hero,
  .section,
  .page-hero,
  .color-band,
  .soft,
  .banana {
    width: calc(100% - 28px);
    max-width: none;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .home-hero .hero-text {
    margin-left: 60px;
  }

  .color-band,
  .soft,
  .banana {
    padding: 30px 18px;
  }

  .image-feature {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .appreciation-feature {
    gap: 18px;
  }

  .appreciation-feature > h2 {
    text-align: center;
  }

  .appreciation-desktop-extra {
    display: none;
  }

  .appreciation-mobile-toggle {
    display: inline;
  }

  .appreciation-mobile-more:not([hidden]) {
    display: block;
  }

  .global-reach-desktop-intro {
    display: none;
  }

  .global-reach-mobile-intro,
  .global-reach-mobile-extra {
    display: inline;
  }

  .initiative-card-body {
    grid-template-columns: 1fr;
  }

  .initiative-card-logo {
    display: none;
  }

  .wide-img,
  .rounded-img {
    width: 100%;
  }
}

/* Consistent spacing and heading scale across all pages */
:root {
  --section-y: 54px;
  --section-y-mobile: 34px;
  --h1-size: clamp(2.4rem, 5vw, 4.4rem);
  --h2-size: clamp(2rem, 3vw, 3rem);
  --h3-size: clamp(1.12rem, 1.45vw, 1.32rem);
  --heading-gap: 16px;
  --subheading-gap: 24px;
}

main > .section,
main > .page-hero {
  margin-right: auto;
  margin-left: auto;
}

main > .section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

main > .image-feature {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

main > .soft,
main > .color-band {
  padding: var(--section-y) clamp(18px, 4vw, 44px);
}

main h1,
.page-hero h1 {
  margin: 0 0 var(--heading-gap);
  font-family: "Lora", Georgia, serif;
  font-size: var(--h1-size);
  line-height: 1.08;
}

main h2 {
  margin: 0 0 var(--heading-gap);
  font-family: "Lora", Georgia, serif;
  font-size: var(--h2-size);
  line-height: 1.12;
}

.text-page h2,
.section h2 {
  margin-top: 0;
}

.text-page h2:not(:first-child),
.section h2:not(:first-child) {
  margin-top: calc(var(--section-y) * 0.72);
}

main h3 {
  margin: var(--subheading-gap) 0 10px;
  color: var(--ink);
  font-size: var(--h3-size);
  line-height: 1.38;
}

main h2 + h3 {
  margin-top: 10px;
}

.maroon-question {
  color: #800000;
}

.consultation-section h3 {
  color: #7030a0;
}

@media (max-width: 760px) {
  :root {
    --section-y: var(--section-y-mobile);
    --h1-size: 2.25rem;
    --h2-size: 1.95rem;
    --h3-size: 1.12rem;
    --heading-gap: 12px;
    --subheading-gap: 20px;
  }

  main > .soft,
  main > .color-band {
    padding: var(--section-y) 18px;
  }

  .text-page h2:not(:first-child),
  .section h2:not(:first-child) {
    margin-top: 28px;
  }
}

/* Final visual QA adjustments */
.consultation-section {
  margin-top: 0;
  margin-bottom: 0;
}

.appreciation-feature > h2 {
  font-size: var(--h2-size);
  line-height: 1.12;
}

/* Unified footer */
.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  background: #033009;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-footer a:not(.footer-email-btn) {
  color: white;
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 540px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer-email-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* Desktop hero gap correction */
@media (min-width: 901px) {
  .home-hero {
    gap: clamp(20px, 2vw, 32px);
  }

  .home-hero .hero-card {
    transform: translateX(-36px);
  }
}

/* Local gallery videos */
.video-embed video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #102f37;
  object-fit: cover;
}

/* Show complete local video frames */
.video-carousel-track {
  grid-auto-columns: minmax(260px, 32%);
  align-items: stretch;
}

.video-carousel-track .video-embed {
  min-height: 360px;
  aspect-ratio: auto;
  background: #102f37;
}

.video-embed video {
  object-fit: contain;
}

@media (max-width: 760px) {
  .video-carousel-track {
    grid-auto-columns: 100%;
  }

  .video-carousel-track .video-embed {
    min-height: 520px;
  }
}


/* Fatty Liver focus image grid */
.focus-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 32px 0 48px;
}

.focus-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .focus-image-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 26px 0 36px;
  }
}


/* Heart page media pair */
.heart-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin: 28px 0 44px;
}

.heart-media-pair img,
.heart-media-pair video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.heart-media-pair video {
  background: #102f37;
}

@media (max-width: 760px) {
  .heart-media-pair {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 24px 0 34px;
  }

  .heart-media-pair img,
  .heart-media-pair video {
    height: auto;
    min-height: 0;
  }
}

/* Final typography and section rhythm polish */
:root {
  --section-y: 54px;
  --section-y-mobile: 34px;
  --heading-gap: 18px;
  --subheading-gap: 26px;
}

main > .section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

main > .soft,
main > .color-band {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

main p,
main li {
  line-height: 1.72;
}

main p {
  margin-bottom: 16px;
}

main h1,
.page-hero h1 {
  line-height: 1.08;
}

main h2 {
  margin-bottom: 18px;
  line-height: 1.16;
}

.text-page h2:not(:first-child),
.section h2:not(:first-child) {
  margin-top: 44px;
}

main h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  line-height: 1.38;
}

main h2 + h3 {
  margin-top: 12px;
}

.maroon-question {
  margin-top: 10px;
  margin-bottom: 16px;
  color: #800000;
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.45;
}

.practice-grid article h3,
.cards h3,
.initiative-card h3 {
  line-height: 1.35;
}

@media (max-width: 760px) {
  main > .section {
    padding-top: var(--section-y-mobile);
    padding-bottom: var(--section-y-mobile);
  }

  main > .soft,
  main > .color-band {
    padding-top: var(--section-y-mobile);
    padding-bottom: var(--section-y-mobile);
  }

  main p,
  main li {
    line-height: 1.68;
  }

  main h2 {
    margin-bottom: 14px;
    line-height: 1.18;
  }

  .text-page h2:not(:first-child),
  .section h2:not(:first-child) {
    margin-top: 32px;
  }

  main h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    line-height: 1.36;
  }

  .maroon-question {
    margin-top: 8px;
    margin-bottom: 14px;
    line-height: 1.42;
  }
}

