/* Calming palette: sage, cream, soft clay, deep forest text */
:root {
  --cream: #f7f4ef;
  --cream-dark: #ebe4d8;
  --sage: #c5d4c4;
  --sage-deep: #9aaf99;
  --mist: #d4e0dc;
  --clay: #c9a88f;
  --clay-soft: #e8d5c4;
  --forest: #2c3d35;
  --forest-muted: #4a5c54;
  --white: #fdfcfa;
  --shadow: rgba(44, 61, 53, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--forest);
  background: linear-gradient(
    165deg,
    var(--cream) 0%,
    #e4eeea 45%,
    #f2ece4 100%
  );
  min-height: 100vh;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--forest);
  color: var(--cream);
  z-index: 100;
  border-radius: 6px;
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: min(1100px, calc(100% - 1.75rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(154, 175, 153, 0.35);
  padding-top: env(safe-area-inset-top);
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 239, 0.97);
  border-bottom-color: rgba(154, 175, 153, 0.55);
  box-shadow: 0 10px 28px rgba(44, 61, 53, 0.08);
}

body.page-home .site-header {
  --header-solid: 0;
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(247, 244, 239, calc(var(--header-solid) * 0.97));
  border-bottom-color: rgba(154, 175, 153, calc(var(--header-solid) * 0.55));
  box-shadow: 0 10px 28px rgba(44, 61, 53, calc(var(--header-solid) * 0.08));
  backdrop-filter: blur(calc(var(--header-solid) * 14px));
  -webkit-backdrop-filter: blur(calc(var(--header-solid) * 14px));
}

body.page-home .site-header .logo,
body.page-home .site-header .nav a {
  color: var(--cream);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

body.page-home .site-header .nav a {
  color: rgba(247, 244, 239, 0.9);
}

body.page-home .site-header .nav a[aria-current="page"] {
  color: var(--cream);
}

body.page-home .site-header.is-solid .logo,
body.page-home .site-header.is-solid .nav a[aria-current="page"] {
  color: var(--forest);
  text-shadow: none;
}

body.page-home .site-header.is-solid .nav a {
  color: var(--forest-muted);
  text-shadow: none;
}

body.page-home .site-header .logo:focus-visible,
body.page-home .site-header .nav a:focus-visible {
  outline-color: var(--clay-soft);
}

body.page-home .site-header.is-solid .logo:focus-visible,
body.page-home .site-header.is-solid .nav a:focus-visible {
  outline-color: var(--sage-deep);
}

body.page-home .site-header .lang-toggle {
  border-color: rgba(247, 244, 239, 0.5);
}

body.page-home .site-header .lang-toggle__opt {
  color: rgba(247, 244, 239, 0.82);
}

body.page-home .site-header .lang-toggle__opt.is-active {
  background: rgba(247, 244, 239, 0.22);
  color: var(--cream);
}

body.page-home .site-header .lang-toggle:hover {
  border-color: rgba(247, 244, 239, 0.8);
}

body.page-home .site-header.is-solid .lang-toggle {
  border-color: rgba(154, 175, 153, 0.6);
}

body.page-home .site-header.is-solid .lang-toggle__opt {
  color: var(--forest-muted);
}

body.page-home .site-header.is-solid .lang-toggle__opt.is-active {
  background: var(--forest);
  color: #f7f4ef;
}

body.page-home .site-header.is-solid .lang-toggle:hover {
  border-color: var(--forest);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.7rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo:hover {
  color: var(--forest);
}

.logo:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  min-width: 0;
}

.nav a {
  position: relative;
  color: var(--forest-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.15rem 0;
  transition: color 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: scaleX(0);
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--forest);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--forest);
  font-weight: 600;
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Keep chrome stable; only the page body crossfades briefly */
.site-header {
  view-transition-name: site-header;
}

main {
  view-transition-name: main-content;
}

@view-transition {
  navigation: auto;
}

::view-transition-group(site-header) {
  animation-duration: 0s;
}

::view-transition-old(site-header),
::view-transition-new(site-header) {
  animation: none;
  mix-blend-mode: normal;
  height: 100%;
}

::view-transition-group(main-content) {
  animation-duration: 0.1s;
  animation-timing-function: ease-out;
}

::view-transition-old(main-content) {
  animation: 0.1s ease-out both vt-fade-out;
}

::view-transition-new(main-content) {
  animation: 0.1s ease-out both vt-fade-in;
}

@keyframes vt-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes vt-fade-in {
  from {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .nav a::after {
    transition: none;
  }

  .site-header {
    transition: none;
  }

  @view-transition {
    navigation: none;
  }

  .site-header,
  main {
    view-transition-name: none;
  }
}

.lang-toggle {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border: 1px solid rgba(154, 175, 153, 0.6);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  align-self: center;
  -webkit-tap-highlight-color: transparent;
}

.lang-toggle__opt {
  padding: 0.32rem 0.62rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle__opt.is-active {
  background: var(--forest);
  color: #f7f4ef;
}

.lang-toggle:hover {
  border-color: var(--forest);
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
  }

  .logo {
    order: 1;
    flex: 0 1 auto;
  }

  .lang-toggle {
    order: 2;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 1.15rem;
  }

  .nav a {
    padding: 0.35rem 0.15rem;
  }
}

/* Inner page hero */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(154, 175, 153, 0.35);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--forest);
}

.page-lead {
  margin: 0;
  max-width: 64rem;
  font-size: 1.08rem;
  color: var(--forest-muted);
  font-weight: 300;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .page-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero--no-rule {
  border-bottom: none;
  padding-bottom: 0.75rem;
}

/* International retreats: pull video closer to the intro */
.ashram-spotlight:not(.ashram-local) {
  padding-top: 1.25rem;
}

/* Hero (home: full-bleed slideshow + overlaid copy) */
.home-explore {
  padding-top: 3.25rem;
}

.home-explore .section-title {
  margin-bottom: 2.35rem;
}

.hero {
  --hero-scroll: 0;
  position: relative;
  min-height: calc(100vh - 4.6rem);
  min-height: calc(100svh - 4.6rem);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 3.5rem 0 5.75rem;
  overflow: hidden;
}

body.page-home .hero {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-media { 
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-slideshow--parallax {
  top: -10%;
  bottom: -10%;
  height: auto;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(44, 61, 53, 0.34) 0%,
      transparent 26%
    ),
    linear-gradient(
      115deg,
      rgba(44, 61, 53, 0.48) 0%,
      rgba(44, 61, 53, 0.18) 32%,
      rgba(44, 61, 53, 0.05) 56%,
      transparent 78%
    ),
    linear-gradient(
      to top,
      rgba(44, 61, 53, 0.22) 0%,
      transparent 46%
    );
}

.hero-scrim--depth {
  z-index: 2;
  background: rgba(44, 61, 53, 0.58);
  opacity: 0;
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 7.25rem);
    min-height: calc(100svh - 7.25rem);
    padding: 2.75rem 0 4.75rem;
    align-items: flex-end;
    justify-content: flex-start;
  }

  body.page-home .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero .hero-inner {
    text-align: left;
    width: min(54rem, calc(100% - 1.75rem));
    margin-left: 0.15rem;
    margin-right: auto;
  }

  .hero-wave {
    height: 5rem;
  }

  img.hero-slideshow__slide--fit {
    transform: scale(1.01);
  }

  .hero-scrim {
    background:
      linear-gradient(
        to bottom,
        rgba(44, 61, 53, 0.42) 0%,
        transparent 32%
      ),
      linear-gradient(
        155deg,
        rgba(44, 61, 53, 0.44) 0%,
        rgba(44, 61, 53, 0.18) 38%,
        transparent 68%
      ),
      linear-gradient(
        90deg,
        rgba(44, 61, 53, 0.26) 0%,
        transparent 58%
      );
  }
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  container-type: inline-size;
  width: min(54rem, calc(100% - 2.5rem));
  max-width: 54rem;
  margin-left: clamp(0.15rem, 0.8vw, 0.7rem);
  margin-right: auto;
  text-align: left;
}

.hero .hero-inner.hero-inner--scroll-fade {
  opacity: calc(1 - var(--hero-scroll, 0));
  transform: translate3d(0, calc(var(--hero-scroll, 0) * -1.35rem), 0);
  will-change: opacity, transform;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-muted);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.2cqi, 3.1rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
  animation: hero-title-in 0.6s ease-out 0.08s both;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.55rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-h1-rest {
  white-space: nowrap;
}

.lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--forest-muted);
  font-weight: 300;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 124px;
  background: linear-gradient(
    to top,
    var(--cream) 0%,
    rgba(247, 244, 239, 0.46) 42%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-slideshow__viewport {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: var(--forest);
}

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

img.hero-slideshow__slide {
  object-fit: cover;
  object-position: center;
}

/* Slide 1: show the full figure instead of cropping */
img.hero-slideshow__slide--fit {
  object-fit: contain;
  object-position: center 92%;
  transform: scale(1.08);
  transform-origin: center 96%;
}

.hero-slideshow__slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow__slide {
    transition-duration: 0.01ms;
  }

  .hero .hero-inner,
  .hero .hero-inner.hero-inner--scroll-fade {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero h1 {
    animation: none;
  }

  .hero-slideshow--parallax {
    top: 0;
    bottom: 0;
    transform: none !important;
  }

  .hero-scrim--depth {
    opacity: 0 !important;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: 0s;
}

.home-spotlight .reveal.in-view {
  transition-delay: calc(0.16s + var(--reveal-delay, 0s));
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sections */
.section {
  padding: 4.25rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--forest);
}

.section-title--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-subtitle {
  margin: 0 0 2.85rem;
  color: var(--forest-muted);
  max-width: 36rem;
}

/* Plan cards */
.plan-cards {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 720px) {
  .plan-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.65rem;
  box-shadow: 0 10px 28px rgba(44, 61, 53, 0.08);
  border: 1px solid rgba(154, 175, 153, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 12.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease, background 0.28s ease;
}

.plan-card--split {
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 16.5rem;
  isolation: isolate;
  background: var(--white);
}

.plan-card__half {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.28s ease, filter 0.28s ease, background 0.28s ease,
    background-image 0.28s ease;
  will-change: transform;
}

/*
 * Top triangle brighter, bottom mistier.
 * Soft fade only in the middle seam (not across the whole card).
 */
.plan-card__half--a {
  clip-path: polygon(0 0, calc(100% + 1px) 0, 0 calc(100% + 1px));
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 74%,
    var(--white) 88%,
    color-mix(in srgb, var(--white) 50%, var(--mist)) 100%
  );
}

.plan-card__half--b {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--white) 70%, var(--mist) 30%) 0%,
    color-mix(in srgb, var(--white) 42%, var(--mist) 58%) 16%,
    color-mix(in srgb, var(--white) 38%, var(--mist) 62%) 100%
  );
}

/* Keep copy inside a safe rectangle within each triangle */
.plan-card__half-body {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 58%;
}

.plan-card__half--a .plan-card__half-body {
  top: 0.95rem;
  left: 0.95rem;
  right: auto;
  bottom: auto;
  width: min(58%, 12.5rem);
  max-height: calc(48% - 0.35rem);
  align-items: flex-start;
  text-align: left;
}

.plan-card__half--b .plan-card__half-body {
  right: 1.1rem;
  bottom: 1.1rem;
  left: auto;
  top: auto;
  width: min(52%, 11.5rem);
  max-height: calc(48% - 0.35rem);
  align-items: stretch;
  text-align: right;
}

.plan-card__half .plan-card-title {
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

/* Wrap within the text box (min-width:0 beats flex max-content overflow) */
.plan-card .plan-card__half--b .plan-card-title {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  padding-left: 2rem;
}

.plan-card__half .plan-price {
  margin: 0;
  font-size: 0.92rem;
}

.plan-card__half .plan-teaser {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.plan-card__half .plan-open {
  margin-top: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  align-self: inherit;
}

.plan-card__half--b .plan-open {
  align-self: flex-end;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--sage-deep);
  background: linear-gradient(145deg, var(--white) 0%, var(--mist) 100%);
  box-shadow: 0 22px 55px var(--shadow);
}

/* Split shell stays put; each triangle pops on its own */
.plan-card--split:hover,
.plan-card--split:focus-within {
  transform: none;
  border-color: rgba(154, 175, 153, 0.45);
  background: var(--white);
  box-shadow: 0 12px 40px var(--shadow);
}

.plan-card--split:has(.plan-card__half:hover),
.plan-card--split:has(.plan-card__half:focus-within) {
  overflow: visible;
  border-color: var(--sage-deep);
  box-shadow: 0 16px 44px rgba(44, 61, 53, 0.12);
}

.plan-card__half--a:hover,
.plan-card__half--a:focus-within {
  z-index: 4;
  transform: translateY(-8px);
  filter: drop-shadow(0 18px 28px rgba(44, 61, 53, 0.2));
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 72%,
    var(--white) 86%,
    color-mix(in srgb, var(--white) 48%, var(--mist)) 100%
  );
}

.plan-card__half--b:hover,
.plan-card__half--b:focus-within {
  z-index: 4;
  transform: translateY(-8px);
  filter: drop-shadow(0 18px 28px rgba(44, 61, 53, 0.2));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--white) 62%, var(--mist) 38%) 0%,
    color-mix(in srgb, var(--white) 36%, var(--mist) 64%) 18%,
    color-mix(in srgb, var(--white) 28%, var(--mist) 72%) 100%
  );
}

@supports not (background: color-mix(in srgb, white 50%, black)) {
  .plan-card__half--a {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 82%, #e8efeb 100%);
  }

  .plan-card__half--b {
    background: linear-gradient(135deg, #f2f6f4 0%, #e6eeeb 16%, #e4ece9 100%);
  }

  .plan-card__half--a:hover,
  .plan-card__half--a:focus-within {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 80%, #e4ece8 100%);
  }

  .plan-card__half--b:hover,
  .plan-card__half--b:focus-within {
    background: linear-gradient(135deg, #eef4f1 0%, #e2ebe8 18%, #dce7e3 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card {
    transition: box-shadow 0.28s ease, border-color 0.28s ease,
      background 0.28s ease;
  }

  .plan-card__half {
    transition: filter 0.28s ease, background 0.28s ease;
  }

  .plan-card:hover,
  .plan-card:focus-within,
  .plan-card__half:hover,
  .plan-card__half:focus-within {
    transform: none;
  }
}

@media (min-width: 720px) {
  .plan-card {
    min-height: 14.5rem;
  }

  .plan-card--split {
    min-height: 17.5rem;
  }

  .plan-card__half-body {
    max-width: 54%;
  }

  .plan-card__half--a .plan-card__half-body,
  .plan-card__half--b .plan-card__half-body {
    width: min(54%, 13.5rem);
  }

  .plan-card__half--b .plan-card__half-body {
    width: min(52%, 12rem);
  }
}

.plan-card--featured {
  border-color: var(--sage-deep);
  background: linear-gradient(145deg, var(--white) 0%, var(--mist) 100%);
}

.plan-card .plan-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.plan-price {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2b584;
}

.plan-teaser {
  flex: 1 1 auto;
  margin: 0 0 1.25rem;
  color: var(--forest-muted);
  font-size: 0.98rem;
}

.plan-card .plan-open {
  margin-top: auto;
}

/* Home: upcoming events — corner photos fade behind a centered list */
.home-spotlight {
  padding-top: 5rem;
}

.home-spotlight .container {
  width: min(1320px, calc(100% - 1.25rem));
}

.home-spotlight__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(253, 252, 250, 0.92) 0%, rgba(197, 212, 196, 0.28) 100%);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 10px 28px rgba(44, 61, 53, 0.08);
  padding: clamp(2.75rem, 6.5vw, 4.25rem) clamp(2rem, 6vw, 4rem);
  min-height: 36rem;
}

.home-spotlight__photo {
  position: absolute;
  z-index: 0;
  margin: 0;
  width: min(54%, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
}

.home-spotlight__photo--tl {
  top: 0;
  left: 0;
  transform: translate(-28%, -28%);
}

.home-spotlight__photo--br {
  right: 0;
  bottom: 0;
  transform: translate(28%, 28%);
}

@media (max-width: 900px) {
  .home-spotlight__photo {
    opacity: 0.28;
  }

  .home-spotlight__card {
    min-height: 0;
    padding: clamp(1.75rem, 5vw, 3.25rem) clamp(1.15rem, 4vw, 2.5rem);
  }
}

.home-spotlight__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.home-spotlight__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44rem;
  margin-inline: auto;
}

.events-title {
  position: relative;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
}

.events-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.5rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay) 0%, var(--sage-deep) 100%);
  transform: translateX(-50%);
}

.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: 100%;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(253, 252, 250, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(154, 175, 153, 0.28);
  border-left: 3px solid var(--clay);
  box-shadow: 0 6px 18px rgba(44, 61, 53, 0.05);
  transition: transform 0.18s ease, background 0.18s ease, border-left-color 0.18s ease;
}

.event-card:hover {
  transform: translateX(3px);
  background: rgba(253, 252, 250, 0.94);
  border-left-color: var(--sage-deep);
}

.event-card--cta {
  border-left-color: var(--sage-deep);
  align-items: flex-start;
}

.event-card--cta .event-card__body {
  width: 100%;
}

.event-card__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.event-card--cta .btn {
  padding: 0.48rem 1rem;
  font-size: 0.9rem;
}

.event-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  min-height: 3.4rem;
  height: auto;
  padding: 0.32rem 0.15rem 0.38rem;
  border-radius: 12px;
  background: var(--forest);
  color: var(--cream);
  line-height: 1;
  gap: 0.1rem;
}

.event-card__date--end {
  margin-left: auto;
}

.event-card__soon {
  display: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 0 0.08rem;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
}

.event-card--away .event-card__when-label,
.event-card--away .event-card__month,
.event-card--away .event-card__day {
  display: none;
}

.event-card--away .event-card__soon {
  display: block;
}

.event-card--away .event-card__date {
  padding: 0.12rem 0.08rem;
  container-type: inline-size;
}

/* “Bientôt” is longer than “Soon”; Outfit + tight tracking fills the square without overflow. */
html[lang="fr"] .event-card__soon {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: none;
  overflow: hidden;
  max-width: 100%;
}

@supports (font-size: 1cqi) {
  html[lang="fr"] .event-card__soon {
    font-size: clamp(0.78rem, 26cqi, 0.92rem);
  }
}

.event-card__when-label {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.event-card__month {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-card__day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  overflow-wrap: anywhere;
  min-width: 0;
}

.event-card__head {
  display: flex;
  align-items: baseline;
  gap: 0.15rem 0.15rem;
  flex-wrap: wrap;
}

.event-card__price {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.event-card__price::before {
  content: "·";
  margin: 0 0.5rem 0 0.2rem;
  color: var(--sage-deep);
  font-weight: 600;
}

.event-card__price[hidden] {
  display: none !important;
}

.event-card__desc {
  font-size: 0.92rem;
  color: var(--forest-muted);
  overflow-wrap: anywhere;
}

.event-card__bullets {
  list-style: disc;
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--forest-muted);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.event-card__bullets li {
  padding-left: 0.1rem;
}

.event-card__register {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.18s ease, transform 0.18s ease;
}

a.event-card__register:hover {
  background: var(--sage-deep);
}

.event-card__register--soon {
  cursor: default;
}

.event-card__register[hidden] {
  display: none !important;
}


/* Home: testimonials */
.home-testimonials {
  padding-top: 3.25rem;
}

.home-testimonials__intro {
  margin-bottom: 2.35rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.testimonial {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  margin: 0;
  padding: clamp(1.45rem, 3.2vw, 2rem);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 10px 28px rgba(44, 61, 53, 0.08);
}

.testimonial--media-right {
  flex-direction: row-reverse;
}

.testimonial__media {
  flex-shrink: 0;
  width: min(220px, 38vw);
}

.testimonial__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid rgba(197, 212, 196, 0.65);
}

.testimonial__quote {
  margin: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.testimonial__quote-text {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--forest);
}

.testimonial__quote-text > p {
  margin: 0 0 0.95em;
  font: inherit;
  color: inherit;
}

.testimonial__quote-text > p:last-child {
  margin-bottom: 0;
}

.testimonial__quote-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.testimonial:not(.is-expanded) .testimonial__quote-text.is-clamped > p {
  display: contents;
}

.testimonial.is-expanded .testimonial__quote-text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.testimonial__more {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: -0.35rem 0 0.85rem;
  order: 1;
  align-self: flex-start;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.testimonial__more[hidden],
.profile-card__more[hidden] {
  display: none !important;
}

.testimonial__more:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.testimonial__attrib {
  margin: 0;
  order: 2;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--forest-muted);
  font-weight: 500;
}

.testimonial__attrib cite {
  font-style: normal;
}

.testimonial__role::before {
  content: " - ";
}

.testimonial__role {
  font-weight: 400;
}

@media (max-width: 640px) {
  .testimonial,
  .testimonial--media-right {
    flex-direction: column;
    text-align: center;
  }

  .testimonial__media {
    width: min(200px, 70vw);
  }

  .testimonial__more {
    align-self: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(44, 61, 53, 0.2);
}

.btn-primary:hover {
  background: #24332c;
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--sage-deep);
}

.btn-secondary:hover {
  background: rgba(197, 212, 196, 0.35);
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

/* About Nootan: portrait + story prose (editorial, not resume) */
.about-page-intro {
  padding-top: 2.5rem;
}

.about-intro-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-intro-title {
  margin: 0 auto 1.5rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  text-align: center;
}

.about-intro-title[hidden] {
  display: none !important;
}

.about-intro-top {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(1.35rem, 3.2vw, 2.5rem);
  row-gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(154, 175, 153, 0.35);
}

.about-intro-figure {
  display: contents;
}

.about-intro-figure__photo {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  align-self: stretch;
  border-radius: calc(var(--radius) + 2px);
  border: 2px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 12px 30px rgba(44, 61, 53, 0.1);
}

.about-intro-figure__name {
  grid-column: 1;
  grid-row: 2;
  margin: 0.9rem 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  text-align: center;
}

.about-intro-figure__field {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  color: var(--forest-muted);
  text-align: center;
}

.about-intro-lead {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--forest-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  align-self: start;
}

.about-intro-story {
  display: grid;
  gap: 1.75rem;
  max-width: 52rem;
  margin-inline: auto;
  text-align: left;
}

.about-story-block {
  margin: 0;
}

.about-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 0.75rem;
  color: var(--forest);
  letter-spacing: 0;
}

.about-story-block p {
  margin: 0 0 0.85rem;
  color: var(--forest-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-story-block em {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: italic;
  color: inherit;
}

.about-story-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .about-intro-top {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    justify-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .about-intro-figure__photo,
  .about-intro-figure__name,
  .about-intro-figure__field,
  .about-intro-lead {
    grid-column: auto;
    grid-row: auto;
  }

  .about-intro-figure__photo {
    width: min(240px, 70vw);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-intro-lead {
    text-align: left;
    max-width: none;
  }

  .about-intro-story {
    max-width: none;
  }
}

.about-values {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(154, 175, 153, 0.35);
  border-bottom: 1px solid rgba(154, 175, 153, 0.35);
}

.values-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem 2rem;
  min-height: 0;
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 8px 28px var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px var(--shadow);
}

.profile-card__photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.35rem;
  border: 3px solid rgba(154, 175, 153, 0.55);
}

.profile-card__photo--ashish {
  object-position: center 22%;
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
}

.profile-card__role {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

.profile-card__bio-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.profile-card__bio {
  margin: 0;
  color: var(--forest-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  overflow: hidden;
  transition: none;
}

.profile-card__bio > p {
  margin: 0 0 0.9em;
}

.profile-card__bio > p:last-child {
  margin-bottom: 0;
}

.profile-card__bio.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.profile-card:not(.is-expanded) .profile-card__bio.is-clamped > p {
  display: contents;
}

.profile-card.is-expanded .profile-card__bio {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.profile-card__more {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.15rem 0.25rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.profile-card__more:hover {
  color: var(--forest-muted);
}

.profile-card__more:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.about-cta {
  text-align: center;
}

.about-cta-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.about-cta-text {
  margin: 0 auto;
}

.about-cta-text a {
  color: var(--forest);
  font-weight: 600;
}

.about-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
}

.about-thanks {
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
  text-align: center;
  border-top: 1px solid rgba(154, 175, 153, 0.35);
  background: rgba(255, 255, 255, 0.35);
}

.about-thanks-inner {
  max-width: 28rem;
  margin-inline: auto;
}

.about-thanks-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 0.45rem;
  color: var(--forest);
}

.about-thanks-text {
  margin: 0;
  color: var(--forest-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ashram-life-stay {
  padding-top: 0.5rem;
}

.ashram-info-card {
  margin: 0;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 8px 24px var(--shadow);
}

.ashram-info-card__block p {
  margin: 0 0 0.85rem;
  color: var(--forest-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ashram-info-card__block p:last-child {
  margin-bottom: 0;
}

.ashram-day-grid {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

/* Ashram: Local Retreats band (same split as About → Meet the Experts) */
.ashram-local {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(154, 175, 153, 0.35);
  border-bottom: 1px solid rgba(154, 175, 153, 0.35);
}

.ashram-local .page-title {
  margin-bottom: 1.85rem;
}

.ashram-local .ashram-story {
  margin-top: 3.5rem;
}

.ashram-local__cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* Ashram: featured block (video, image–text–image) */
.ashram-video {
  position: relative;
  width: 100%;
  margin: 0 0 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(154, 175, 153, 0.45);
  box-shadow: 0 12px 40px var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--forest);
}

.ashram-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--forest);
}

.ashram-triptych {
  display: grid;
  gap: 1.5rem 1.75rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.ashram-triptych__figure {
  margin: 0;
  min-width: 0;
}

.ashram-triptych__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 32px var(--shadow);
  border: 1px solid rgba(154, 175, 153, 0.35);
}

.ashram-triptych__text {
  color: var(--forest-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ashram-triptych__text p {
  margin: 0;
}

.ashram-day-grid .value-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.35rem;
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 8px 24px var(--shadow);
}

.ashram-day-grid .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--clay) 0%, var(--sage-deep) 100%);
}

.ashram-day-grid .value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--forest);
}

.ashram-day-grid .value-card p {
  margin: 0;
  color: var(--forest-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ashram-day-grid .value-card ul {
  list-style: disc;
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--forest-muted);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ashram-day-grid .value-card li {
  padding-left: 0.1rem;
}

.ashram-story .about-intro-row__copy p {
  margin: 0 0 0.85rem;
  color: var(--forest-muted);
  line-height: 1.6;
}

.ashram-story .about-intro-row__copy p:last-child {
  margin-bottom: 0;
}

/* Phones / tablets: text first, then two photos side by side */
@media (max-width: 899px) {
  .ashram-spotlight .ashram-video {
    margin-bottom: 1.5rem;
  }

  .ashram-spotlight .ashram-triptych {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.75rem;
    align-items: stretch;
  }

  .ashram-spotlight .ashram-triptych__text {
    grid-column: 1 / -1;
    order: -1;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.6;
    padding-inline: 0.15rem;
  }

  .ashram-spotlight .ashram-triptych__img {
    aspect-ratio: 3 / 4;
    box-shadow: 0 8px 22px var(--shadow);
  }
}

@media (min-width: 900px) {
  .ashram-triptych {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem) minmax(0, 1fr);
    gap: 1.75rem 2rem;
    align-items: center;
  }

  .ashram-triptych__text {
    padding-block: 0.5rem;
  }
}

/* Media: photo row across the page */
.media-gallery {
  padding-top: 2rem;
}

.media-gallery .container {
  width: min(1320px, calc(100% - 1.25rem));
}

.media-gallery__grid {
  display: grid;
  row-gap: 2.5rem;
  column-gap: 3.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .media-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.75rem;
    column-gap: 3.5rem;
  }
}

@media (min-width: 960px) {
  .media-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 3rem;
    column-gap: 3.75rem;
  }
}

.media-gallery__figure {
  margin: 0;
}

.media-gallery__frame {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.55rem 0.55rem 0.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  border: 1px solid rgba(154, 175, 153, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 28px var(--shadow);
}

.media-gallery__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  background: transparent;
  text-align: inherit;
  overflow: hidden;
}

.media-gallery__trigger:focus {
  outline: none;
}

.media-gallery__trigger:focus-visible {
  outline: 2px solid var(--clay-soft);
  outline-offset: 3px;
}

.media-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  box-shadow: none;
}

.media-gallery__frame > video.media-gallery__img {
  cursor: zoom-in;
}

.media-gallery__title {
  margin: 0;
  padding: 0 0.25rem 0.1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
  text-align: center;
}

/* Media lightbox — same interaction pattern as kimV2 (overlay + is-open + body lock) */
body.media-lightbox-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.media-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.media-lightbox__close:focus-visible {
  outline: 2px solid var(--clay-soft);
  outline-offset: 3px;
}

.media-lightbox__inner {
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  text-align: center;
  cursor: default;
}

.media-lightbox__inner img,
.media-lightbox__inner video {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

.media-lightbox__caption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.media-lightbox__caption:empty,
.media-lightbox__caption[hidden] {
  display: none;
}

.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;
}

/* Contact */
.contact-page-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

@media (min-width: 800px) {
  .contact-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid rgba(154, 175, 153, 0.4);
  box-shadow: 0 8px 24px rgba(44, 61, 53, 0.08);
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.85rem;
  color: var(--forest);
  font-weight: 600;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid rgba(154, 175, 153, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-title-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--sage-deep);
  flex-shrink: 0;
}

.contact-title-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.15rem 0 0;
}

.contact-card-main {
  margin: 0;
  color: var(--forest);
  line-height: 1.55;
  text-align: center;
  font-size: 1.04rem;
}

.contact-card-phone {
  text-align: center;
}

.contact-card-note {
  margin: 0.35rem 0 0;
  color: var(--forest-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}

.contact-card-main + .contact-card-main {
  margin-top: 0.9rem;
}

.contact-card-main--divider {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(154, 175, 153, 0.35);
}

.contact-card-main a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card-main a:hover {
  color: var(--forest-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-social-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-pill__icon {
  display: inline-flex;
  width: 0.95rem;
  height: 0.95rem;
}

.social-pill__icon svg {
  width: 100%;
  height: 100%;
}

.social-pill:hover {
  background: #24332c;
  transform: translateY(-1px);
}

.site-footer {
  margin-top: 0;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  border-top: 3px solid var(--clay);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding-top: 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  column-gap: clamp(2.05rem, 6.75vw, 5.25rem);
  row-gap: 1.5rem;
  width: 100%;
  padding-bottom: 2rem;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-col--social {
  justify-self: end;
  text-align: right;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 239, 0.22);
  background: rgba(247, 244, 239, 0.1);
  color: var(--cream);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.footer-social-link:hover {
  background: rgba(247, 244, 239, 0.18);
  border-color: rgba(247, 244, 239, 0.4);
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--clay-soft);
  outline-offset: 3px;
}

.footer-social-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.footer-col--logo {
  justify-self: center;
  padding-inline: 0;
}

.footer-logo-link {
  display: block;
  line-height: 0;
}

.footer-logo {
  width: auto;
  max-width: min(270px, 56vw);
  max-height: 9rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-col--contact {
  justify-self: start;
  text-align: left;
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: var(--clay-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.35rem;
}

.footer-copy-line {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}

@media (max-width: 860px) {
  .footer-inner {
    padding-top: 1.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 1.65rem;
    text-align: center;
  }

  .footer-col--social,
  .footer-col--logo,
  .footer-col--contact {
    justify-self: center;
  }

  .footer-col--social {
    text-align: center;
  }

  .footer-col--contact {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Modal overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 61, 53, 0.45);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay[hidden] {
  display: none;
}

/* Dialog */
.modal {
  position: fixed;
  z-index: 100;
  max-width: min(420px, calc(100% - 1.5rem));
  width: 100%;
  max-height: min(90vh, 90dvh);
  margin: auto;
  padding: 2rem 1.75rem 1.75rem;
  overflow-y: auto;
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(44, 61, 53, 0.25);
  color: var(--forest);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal[open].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal::backdrop {
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal {
    transition: none;
  }

  .modal {
    transform: none;
  }

  .modal[open].is-visible {
    transform: none;
  }
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.25rem;
  padding-right: 2rem;
}

.modal-price {
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.modal-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--forest-muted);
}

.modal-list li {
  margin-bottom: 0.4rem;
}

.modal-note {
  font-size: 0.92rem;
  color: var(--forest-muted);
  margin: 0 0 1rem;
  font-style: italic;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: var(--cream-dark);
  color: var(--forest);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.modal-close:hover {
  background: var(--sage);
}

/* ============================================================
   Responsive / phone refinements
   ============================================================ */

/* Never let media force horizontal scrolling on small screens. */
img,
video,
svg {
  max-width: 100%;
}

/* Tablets & large phones */
@media (max-width: 720px) {
  .header-inner {
    row-gap: 0.55rem;
  }

  .lang-toggle {
    min-height: 2.5rem;
  }

  .lang-toggle__opt {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
  }

  .event-card:not(.event-card--cta) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "start end"
      "body body";
    align-items: stretch;
    column-gap: 0.6rem;
    row-gap: 0.75rem;
  }

  .event-card:not(.event-card--cta):hover {
    transform: none;
  }

  .event-card__date:not(.event-card__date--end) {
    grid-area: start;
    justify-self: start;
  }

  .event-card__date--end {
    grid-area: end;
    justify-self: end;
    margin-left: 0;
  }

  .event-card__body {
    grid-area: body;
    width: 100%;
  }

  .event-card__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .event-card--cta .btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .ashram-spotlight .ashram-triptych {
    grid-template-columns: 1fr;
  }

  .ashram-spotlight .ashram-triptych__text {
    grid-column: auto;
  }
}

/* Phones */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(1100px, calc(100% - 1.5rem));
  }

  .section {
    padding: 3rem 0;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .home-explore .section-title {
    margin-bottom: 2rem;
  }

  .home-spotlight,
  .home-explore,
  .home-testimonials {
    padding-top: 2.75rem;
  }

  .home-spotlight {
    padding-top: 3.75rem;
  }

  .plan-cards {
    gap: 1.35rem;
  }

  .events-list {
    gap: 1rem;
  }

  .testimonials {
    gap: 2rem;
  }

  .nav {
    gap: 0.35rem 1rem;
  }

  .nav a {
    font-size: 0.98rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }

  .logo {
    font-size: 1.35rem;
  }

  .hero {
    min-height: calc(100vh - 8rem);
    min-height: calc(100svh - 8rem);
    padding: 2.5rem 0 4.25rem;
  }

  body.page-home .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero .hero-inner {
    width: min(54rem, calc(100% - 1.5rem));
    margin-left: 0.1rem;
    margin-right: auto;
  }

  .page-hero {
    padding: 2.25rem 0 1.5rem;
  }

  .page-hero--no-rule {
    padding-bottom: 0.5rem;
  }

  .ashram-spotlight:not(.ashram-local) {
    padding-top: 0.85rem;
  }

  .page-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .ashram-video {
    margin-bottom: 1.25rem;
    border-radius: 12px;
  }

  .ashram-spotlight .ashram-triptych {
    gap: 0.75rem;
  }

  .ashram-spotlight .ashram-triptych__text {
    font-size: 0.95rem;
    text-align: left;
  }

  .ashram-spotlight .ashram-triptych__img {
    border-radius: 12px;
    aspect-ratio: 4 / 5;
  }

  .ashram-story .testimonial {
    padding: 1.1rem 1rem;
    gap: 1rem;
  }

  .ashram-story .testimonial__media {
    width: min(180px, 58vw);
  }

  .ashram-story .about-intro-row__copy {
    text-align: left;
  }

  .ashram-info-card {
    padding: 1.25rem 1.1rem;
  }

  .ashram-info-card__block p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .ashram-day-grid {
    gap: 0.85rem;
    margin-top: 0.25rem;
  }

  .ashram-day-grid .value-card {
    padding: 1.1rem 1rem;
  }

  .ashram-day-grid .value-card h3 {
    font-size: 1.25rem;
  }

  .home-spotlight__card {
    padding: 1.45rem 0.95rem 1.65rem;
    min-height: 0;
  }

  .home-spotlight__photo {
    display: none;
  }

  .events-title {
    margin-bottom: 1.15rem;
  }

  .event-card {
    padding: 0.85rem 0.9rem;
    gap: 0.7rem;
  }

  .event-card__date {
    width: auto;
    min-width: 3.15rem;
    min-height: 3rem;
    height: auto;
    padding: 0.32rem 0.55rem 0.36rem;
  }

  .event-card__day {
    font-size: 1.3rem;
  }

  .event-card__title {
    font-size: 1.08rem;
  }

  .event-card__price {
    font-size: 0.88rem;
  }

  .event-card__register {
    min-height: 2.4rem;
    padding: 0.4rem 0.9rem;
  }

  .values-grid {
    gap: 1.75rem;
  }

  .profile-card {
    padding: 1.6rem 1.5rem 1.85rem;
  }

  .profile-card__photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }

  .testimonials {
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.1rem 1rem 1.15rem;
  }

  .modal {
    padding: 1.6rem 1.25rem 1.4rem;
    max-height: calc(100dvh - 1.5rem);
  }

  .modal h2 {
    font-size: 1.5rem;
  }

  .media-lightbox {
    padding: 12px;
  }

  .media-lightbox__close {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
  }

  .media-lightbox__inner {
    max-width: 100%;
    max-height: 92dvh;
  }

  .media-lightbox__inner img,
  .media-lightbox__inner video {
    max-height: calc(92dvh - 4rem);
  }

  .footer-contact {
    font-size: 0.95rem;
  }

  .btn {
    min-height: 2.75rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .nav {
    gap: 0.3rem 0.7rem;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 5.1vw, 1.85rem);
  }

  .event-card {
    padding: 0.75rem 0.7rem;
  }

  .footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .social-pill {
    font-size: 0.82rem;
    padding: 0.4rem 0.7rem;
  }
}
