/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: #3B312B;
  background-color: #F4EFEA;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #9A7136;
  outline-offset: 4px;
}

ul, ol {
  list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  max-width: 680px;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(59, 49, 43, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #3B312B;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #3B312B;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8A96A;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #C8A96A;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #3B312B;
  transition: 0.3s ease;
}

/* ========== HERO (home) ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(244, 239, 234, 0) 0%,
    rgba(239, 231, 223, 0.15) 25%,
    rgba(239, 231, 223, 0.5) 50%,
    rgba(239, 231, 223, 0.85) 75%,
    rgba(239, 231, 223, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 30px rgba(47, 42, 38, 0.3);
  margin-top: -25vh;
}

.hero-projects-header {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-projects-header h2 {
  color: #3B312B;
  margin-bottom: 0.5rem;
}

.hero-projects-header p {
  color: #6B5D52;
  font-size: 1.05rem;
  max-width: none;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  max-width: none;
  opacity: 0.92;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.hero-content .btn-group {
  margin-top: 2.2rem;
}

/* ========== HERO (subpage) ========== */
.hero--sub {
  min-height: 52vh;
  background-color: #E8D8CC;
  padding: 4rem 0;
}

.hero--sub .hero-content {
  color: #3B312B;
  text-shadow: none;
  margin-top: 0;
}

.hero--sub .hero-content p {
  opacity: 0.75;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1.2rem 0 1.8rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3B312B;
  opacity: 0.85;
}

.hero-meta span {
  display: block;
}

.hero--sub::after {
  display: none;
}

.hero--photo {
  min-height: 60vh;
  background-color: #3B312B;
}

.hero--photo::after {
  display: block;
  top: 0;
  background: linear-gradient(90deg, rgba(30, 24, 19, 0.58), rgba(30, 24, 19, 0.22));
}

.hero--photo .hero-content,
.hero--photo .hero-content p {
  color: #fff;
  opacity: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.home-hero {
  min-height: 100vh;
  justify-content: flex-start;
}

.home-hero::after {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(28, 23, 20, 0.8) 0%, rgba(31, 25, 21, 0.58) 42%, rgba(31, 25, 21, 0.08) 78%),
    linear-gradient(0deg, rgba(31, 25, 21, 0.25), transparent 48%);
}

.home-hero .hero-image {
  object-position: center 46%;
}

.home-hero .hero-content {
  max-width: 760px;
  margin: 4rem 0 0 clamp(1rem, 7vw, 7rem);
  padding: 2.5rem;
  text-align: left;
}

.home-hero .hero-content h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
}

.home-hero .btn-group {
  justify-content: flex-start;
}

.home-hero .btn {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.home-hero .btn--filled {
  border-color: #C8A96A;
  background: #C8A96A;
}

/* ========== ROUTE LANDING PAGES ========== */
.route-hero {
  min-height: 72vh;
  padding-top: 72px;
}

.route-hero .hero-content {
  max-width: 760px;
  padding: 2rem;
  margin-top: 0;
}

.route-hero .hero-content h1 {
  letter-spacing: 0.04em;
}

.route-hero .hero-content .eyebrow {
  color: #F4E2B9 !important;
  margin-bottom: 1rem;
}

.route-hero__lead {
  margin: 1.5rem auto 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem) !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
}

.route-intro {
  padding-bottom: 2.5rem;
  text-align: center;
}

.route-intro p {
  margin: 0 auto 1.2rem;
  font-size: 1.08rem;
}

.route-motto,
.route-intro .route-motto {
  color: #C8A96A;
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  font-style: italic;
}

.route-cta h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.route-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1440px;
  margin: 0 auto;
}

.route-choice {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.route-choice::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(28, 24, 19, 0.94) 0%, rgba(28, 24, 19, 0.74) 58%, rgba(28, 24, 19, 0.25) 100%);
}

.route-choice img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-choice:hover img {
  transform: scale(1.04);
}

.route-choice__content {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  max-width: 620px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.72);
}

.route-choice__content .eyebrow {
  color: #F4E2B9 !important;
  opacity: 1;
}

.route-choice__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 0.4rem 0 0.8rem;
}

.route-choice__route {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.route-choice__content p {
  margin: 1.35rem 0;
  line-height: 1.75;
}

.route-choice__content .route-choice__summary {
  margin-bottom: 0.65rem;
}

.route-choice__content .route-choice__note {
  margin-top: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(244, 226, 185, 0.7);
  color: #F7EEDB;
  font-size: 0.94rem;
}

.route-choice .btn {
  color: #fff;
  border-color: #fff;
}

.route-choice .btn:hover {
  background: #fff;
  color: #3B312B;
}

.route-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.route-story-grid--reverse > :first-child {
  order: 2;
}

.route-story-grid--reverse > :last-child {
  order: 1;
}

.route-story-media {
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
}

.route-story-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.route-stops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.route-stop {
  padding: 2rem;
  border: 1px solid #E3DDD6;
  border-radius: 8px;
  background: #fff;
}

.route-stop--wide {
  grid-column: 1 / -1;
}

.route-stop h3 {
  color: #C8A96A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.route-stop h4 {
  font-family: 'Newsreader', serif;
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.route-stop p {
  color: #6B5D52;
  font-size: 0.94rem;
  line-height: 1.75;
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.route-fact {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.route-fact span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.route-fact strong {
  display: block;
  margin-top: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.route-practical {
  background: #415347;
  color: #fff;
}

.route-practical h2,
.route-practical h3,
.route-practical p,
.route-practical li,
.route-practical .route-fact,
.route-practical .route-fact span,
.route-practical .route-fact strong {
  color: #fff;
}

.route-practical .eyebrow,
.route-practical .route-practical__price {
  color: #F4E2B9 !important;
  opacity: 1;
}

.route-practical .content-block ul li::before {
  color: #E7CD95;
}

.route-practical__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}

.route-practical__price {
  margin: 0.7rem 0 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
}

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

.route-cta p {
  margin: 1rem auto 0;
}

.route-cta__intro {
  max-width: 720px;
  margin: 0 auto;
}

.route-cta-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 2.8rem;
  text-align: left;
}

.route-cta-option {
  display: flex;
  min-height: 168px;
  padding: 1.6rem;
  border: 1px solid #C8A96A;
  border-radius: 14px;
  background: #fff;
  color: #3B312B;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(59, 49, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.route-cta-option strong {
  color: #806A45;
  font-family: 'Newsreader', serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.route-cta-option span {
  margin-top: 0.7rem;
  color: #605650;
  font-size: 0.92rem;
  line-height: 1.65;
}

.route-cta-option--primary {
  border-color: #806A45;
  background: #806A45;
}

.route-cta-option--primary strong,
.route-cta-option--primary span {
  color: #fff;
}

.route-cta-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(59, 49, 43, 0.12);
}

/* ========== YOGA SPIRIT LANDING PAGE ========== */
.retreat-hero {
  min-height: 92vh;
  justify-content: flex-start;
}

.retreat-hero--authentic {
  background: #2F342F;
}

.retreat-hero--authentic .hero-image {
  object-position: center 46%;
}

.retreat-hero::after {
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(38, 31, 27, 0.78) 0%, rgba(44, 35, 28, 0.54) 46%, rgba(44, 35, 28, 0.08) 100%),
    linear-gradient(0deg, rgba(44, 35, 28, 0.24), transparent 45%);
}

.retreat-hero .hero-content,
.retreat-hero .hero-content p {
  color: #fff;
  opacity: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.retreat-hero .hero-content {
  max-width: 720px;
  padding: 3rem clamp(2rem, 5vw, 4.5rem);
  margin: 4.5rem 0 0 clamp(0rem, 5vw, 5rem);
  text-align: left;
}

.retreat-hero .hero-content h1 {
  margin-top: 0.5rem;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.retreat-hero__subtitle {
  margin-top: 0.8rem;
  color: #F3DDAA !important;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem) !important;
  font-style: italic;
  letter-spacing: 0.03em !important;
}

.retreat-hero__intro {
  margin-top: 1.6rem;
  max-width: 560px;
  font-size: 1.06rem !important;
  line-height: 1.75 !important;
  letter-spacing: 0.01em !important;
}

.retreat-hero__intro--small {
  margin-top: 0.65rem;
  font-size: 0.9rem !important;
  opacity: 0.88 !important;
}

.retreat-hero__meta {
  margin-top: 1.4rem;
  font-size: 0.96rem !important;
  letter-spacing: 0.04em !important;
}

.retreat-hero__meta strong {
  color: #F3DDAA;
}

.retreat-hero .btn {
  border-color: #fff;
  color: #fff;
}

.retreat-hero .btn--filled {
  background: #C8A96A;
  border-color: #C8A96A;
}

.retreat-hero .btn-group {
  justify-content: flex-start;
}

.retreat-intro-section {
  position: relative;
  overflow: hidden;
}

.retreat-intro-section::before {
  content: 'ॐ';
  position: absolute;
  top: 1rem;
  left: 50%;
  color: rgba(200, 169, 106, 0.08);
  font-family: serif;
  font-size: 18rem;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.retreat-lead {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.retreat-lead h2,
.retreat-lead > .eyebrow {
  text-align: center;
}

.retreat-lead h2 {
  margin-bottom: 2.2rem;
}

.retreat-lead p {
  margin: 0 auto 1.2rem;
  font-size: 1.08rem;
}

.retreat-lead .retreat-pullquote {
  margin: 2.8rem auto;
  padding: 1.2rem 1rem;
  border-top: 1px solid #C8A96A;
  border-bottom: 1px solid #C8A96A;
  color: #806A45;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.experience-card {
  position: relative;
  padding: 2rem 1.6rem;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #E3DDD6;
  box-shadow: 0 12px 36px rgba(59, 49, 43, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card::after {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: 50%;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(59, 49, 43, 0.09);
}

.experience-card__icon {
  color: #C8A96A;
  font-size: 1.65rem;
  line-height: 1;
}

.experience-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.2rem;
}

.experience-card p {
  color: #6B5D52;
  font-size: 0.92rem;
}

.retreat-schedule {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
}

.retreat-day {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #E3DDD6;
  border-radius: 16px;
}

.retreat-day:nth-child(2) {
  background: #E9DFD4;
}

.retreat-day__label {
  border-right: 1px solid rgba(200, 169, 106, 0.55);
}

.retreat-day__label span {
  display: block;
  margin-bottom: 1rem;
  color: rgba(200, 169, 106, 0.62);
  font-family: 'Newsreader', serif;
  font-size: 3.6rem;
  line-height: 1;
}

.retreat-day h3 {
  color: #C8A96A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.retreat-day h4 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 1.4rem;
}

.retreat-day p {
  max-width: 650px;
  margin-bottom: 0.8rem;
  color: #6B5D52;
  font-size: 0.98rem;
}

.retreat-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 2.8rem;
}

.retreat-photo {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 14px;
  background: #D8CEC4;
  box-shadow: 0 16px 38px rgba(59, 49, 43, 0.1);
}

.retreat-photo:nth-child(2) {
  transform: translateY(1.2rem);
}

.retreat-photo::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(31, 25, 22, 0.72));
  pointer-events: none;
}

.retreat-photo img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.retreat-photo:hover img {
  transform: scale(1.035);
}

.retreat-photo figcaption {
  position: absolute;
  right: 1.3rem;
  bottom: 1.1rem;
  left: 1.3rem;
  z-index: 1;
  color: #fff;
  font-family: 'Newsreader', serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.sound-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 36%, rgba(200, 169, 106, 0.16), transparent 32%),
    linear-gradient(135deg, #2F2723, #44362E 62%, #2D2723);
  color: #fff;
}

.sound-section h2,
.sound-section p {
  color: #fff;
}

.sound-section .eyebrow {
  color: #E7CD95 !important;
}

.sound-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.sound-section__heading h2 {
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.sound-section__photo {
  position: relative;
  margin-top: 2.6rem;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(231, 205, 149, 0.32);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sound-section__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(20, 14, 11, 0.32));
  pointer-events: none;
}

.sound-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sound-section__photo:hover img {
  transform: scale(1.025);
}

.sound-section__copy {
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid rgba(231, 205, 149, 0.42);
}

.sound-section__copy p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.sound-section__copy .sound-section__lead {
  margin-bottom: 1.8rem;
  color: #fff;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
}

.sound-section__guide {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(231, 205, 149, 0.26);
  color: #F3DDAA !important;
  font-weight: 400;
}

.sound-section__orb {
  position: absolute;
  top: 50%;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(231, 205, 149, 0.13);
  border-radius: 50%;
  transform: translateY(-50%);
}

.sound-section__orb span {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(231, 205, 149, 0.1);
  border-radius: 50%;
}

.sound-section__orb span:nth-child(2) { inset: 28%; }
.sound-section__orb span:nth-child(3) { inset: 42%; }

.surya-section .content-block p {
  margin-top: 1rem;
}

.surya-photo {
  min-height: 460px;
  overflow: hidden;
  border-radius: 18px;
  background: #D8CEC4;
  box-shadow: 0 24px 60px rgba(59, 49, 43, 0.12);
}

.surya-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.surya-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.surya-gallery figure {
  min-height: 230px;
  overflow: hidden;
  border-radius: 12px;
  background: #D8CEC4;
}

.surya-gallery figure:nth-child(2) {
  transform: translateY(1rem);
}

.surya-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.surya-gallery figure:hover img {
  transform: scale(1.035);
}

.host-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.host-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: #fff;
  border: 1px solid #E3DDD6;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(59, 49, 43, 0.04);
}

.host-card--guest {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
}

.host-card__monogram {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid #C8A96A;
  border-radius: 50%;
  color: #A5844A;
  font-family: 'Newsreader', serif;
  font-size: 1.6rem;
}

.host-card__portrait {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(200, 169, 106, 0.65);
  border-radius: 50%;
  object-fit: cover;
}

.host-card h3 {
  margin-bottom: 0.25rem;
}

.host-card span {
  color: #C8A96A;
  font-size: 0.84rem;
}

.host-card p {
  margin-top: 1rem;
  color: #6B5D52;
  font-size: 0.95rem;
}

.review-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid #E3DDD6;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(59, 49, 43, 0.05);
}

.review-card__quote {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  color: rgba(200, 169, 106, 0.14);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.review-card blockquote {
  position: relative;
  color: #3B312B;
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
}

.review-card p {
  margin-top: 1rem;
  color: #6B5D52;
  font-size: 0.94rem;
}

.review-card cite {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #EEE7DF;
  color: #C8A96A;
  font-size: 0.82rem;
  font-style: normal;
}

.reviews-section .section-header > p:not(.eyebrow) {
  margin: 0.35rem auto 0;
  color: #6B5D52;
}

.retreat-group-photo {
  position: relative;
  margin-top: 2rem;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #D8CEC4;
  box-shadow: 0 20px 50px rgba(59, 49, 43, 0.1);
}

.retreat-group-photo::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(31, 25, 22, 0.7));
  pointer-events: none;
}

.retreat-group-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.retreat-group-photo figcaption {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  left: 2rem;
  z-index: 1;
  color: #fff;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.retreat-practical__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
}

.retreat-practical__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.retreat-practical .route-fact {
  padding: 1.3rem 0;
}

.retreat-practical .route-fact strong {
  font-size: 1.35rem;
}

.retreat-practical__price {
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.retreat-practical__price > strong {
  display: block;
  margin: 0.2rem 0 1.2rem;
  color: #F4E2B9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.retreat-practical__deposit {
  display: flex;
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.retreat-practical__deposit span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retreat-practical__deposit strong {
  color: #F4E2B9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.retreat-practical__note {
  display: flex;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.retreat-practical__note p:last-child {
  color: #F4E2B9;
  text-align: right;
}

.retreat-closing {
  position: relative;
  overflow: hidden;
  background: #EFE7DF;
}

.retreat-closing::before,
.retreat-closing::after {
  content: '';
  position: absolute;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: 50%;
}

.retreat-closing::before { top: -14rem; left: -10rem; }
.retreat-closing::after { right: -12rem; bottom: -15rem; }

.retreat-closing .content-block {
  position: relative;
  z-index: 1;
}

.retreat-closing .content-block p {
  margin: 0.65rem auto 0;
}

.retreat-closing__welcome {
  margin-top: 1.8rem !important;
  font-family: 'Newsreader', serif;
  font-size: 1.55rem;
  font-style: italic;
}

.retreat-closing__signature {
  margin-top: 1.6rem !important;
  color: #A5844A;
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: #EFE7DF;
}

.section--warm {
  background: #E8D8CC;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  margin: 1rem auto 0;
  color: #6B5D52;
  font-size: 1.05rem;
}

/* ========== PHILOSOPHY / CENTERED TEXT ========== */
.text-center {
  text-align: center;
}

.philosophy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.philosophy h2 {
  margin-bottom: 1.8rem;
}

.philosophy p {
  margin: 0 auto;
  color: #6B5D52;
  font-size: 1.08rem;
  line-height: 1.85;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 49, 43, 0.08);
}

.card-image {
  width: 100%;
  height: 240px;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.site-photo {
  filter: saturate(0.84) sepia(0.06) contrast(0.96) brightness(1.02);
}

/* Shared visual treatment for documentary photography across every page. */
.hero-image,
.card-image,
.about-image,
.route-choice img,
.person-photo,
.retreat-photo img,
.retreat-group-photo img,
.sound-section__photo img,
.surya-photo img,
.surya-gallery img,
.route-story-media img,
.route-photo-band img,
.india-gallery__item img,
.host-card__portrait,
.date-card__image {
  filter: saturate(0.84) sepia(0.06) contrast(0.96) brightness(1.02);
}

.card-body {
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.card-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #3B312B;
  margin-bottom: 0.3rem;
}

.card-body p {
  font-size: 0.85rem;
  color: #8C7E73;
  margin: 0 auto;
}

/* ========== ABOUT GRID ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-image--featured {
  height: clamp(360px, 42vw, 520px);
  aspect-ratio: auto;
  object-position: center 62%;
  box-shadow: 0 22px 54px rgba(59, 49, 43, 0.12);
}

.about-text h2 {
  margin-bottom: 1.4rem;
}

.about-text p {
  color: #6B5D52;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ========== CONTENT SECTIONS (subpages) ========== */
.content-section {
  padding: 5rem 0;
}

.content-section + .content-section {
  padding-top: 0;
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 1.6rem;
}

.content-block h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-block h4 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.content-block p {
  color: #3B312B;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.content-block p.subtle {
  color: #6B5D52;
}

.content-block ul,
.content-block ol {
  margin-bottom: 1.4rem;
  padding-left: 0;
}

.content-block ul li,
.content-block ol li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #3B312B;
}

.content-block ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #C8A96A;
}

.content-block ol {
  counter-reset: ol-counter;
}

.content-block ol li {
  counter-increment: ol-counter;
}

.content-block ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: #C8A96A;
  font-weight: 400;
}

.content-block .highlight-box {
  background: #EFE7DF;
  border-radius: 8px;
  padding: 2rem 2.4rem;
  margin: 2rem 0;
}

.content-block .highlight-box p {
  margin-bottom: 0.6rem;
}

.content-block .highlight-box p:last-child {
  margin-bottom: 0;
}

.content-block .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #3B312B;
  margin: 1rem 0;
}

.content-block .price span {
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  color: #6B5D52;
}

/* These rules follow the general .content-block styles so practical details
   retain their high contrast on the dark India-page panel. */
.route-practical .content-block p,
.route-practical .content-block ul li,
.route-practical .content-block ol li {
  color: #fff;
}

.route-practical .content-block ul li::before,
.route-practical .content-block ol li::before {
  color: #E7CD95;
}

/* ========== INDIA PHOTO GALLERY ========== */
.india-gallery-section {
  background: #F7F3EE;
}

.india-gallery-section .content-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.india-gallery-section .content-block p {
  color: #6B5D52;
}

.eyebrow {
  color: #C8A96A !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.india-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.india-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #E8D8CC;
}

.india-gallery__item--tall {
  grid-row: span 2;
}

.india-gallery__item--wide {
  grid-column: span 2;
}

.india-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.india-gallery__item:hover img {
  transform: scale(1.04);
}

.india-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.25rem 1rem 0.85rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: linear-gradient(transparent, rgba(25, 20, 16, 0.68));
}

/* ========== EVENT / DATE CARDS ========== */
.event-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.event-card .event-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  color: #C8A96A;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.event-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.event-card p {
  margin: 0 auto 2rem;
  color: #6B5D52;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin: 2rem 0;
}

.date-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #3B312B;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 16px 42px rgba(59, 49, 43, 0.12);
  text-align: left;
}

.date-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-card::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(34, 27, 22, 0.92) 0%, rgba(34, 27, 22, 0.46) 48%, rgba(34, 27, 22, 0.04) 100%);
}

.date-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #fff;
}

.date-card__content h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.date-card .date-emoji {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.date-card .date-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #EAD39D;
  margin-bottom: 0.4rem;
}

.date-card .date-info {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.date-card .btn {
  margin-top: 0.35rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.78rem 2rem;
  border: 1px solid #C8A96A;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3B312B;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: #C8A96A;
  color: #fff;
}

.btn--filled {
  background: #C8A96A;
  color: #fff;
}

.btn--filled:hover {
  background: #B89A5A;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-group--center {
  justify-content: center;
}

/* ========== FORMS ========== */
.form-section {
  background: #EFE7DF;
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section h3 {
  margin-bottom: 0.4rem;
}

.form-section > p {
  margin-bottom: 2rem;
  color: #6B5D52;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: #3B312B;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #E3DDD6;
  border-radius: 6px;
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: #3B312B;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #C8A96A;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-group--checkbox input[type="checkbox"],
.form-group--checkbox input[type="radio"] {
  width: auto;
  margin-top: 0.3rem;
  accent-color: #C8A96A;
}

.form-group--checkbox label {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6B5D52;
}

/* ========== PERSON CARD (about page) ========== */
.person-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.person {
  text-align: center;
}

.person-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.6rem;
}

.person-photo--placeholder {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.6rem;
  border: 1px solid rgba(200, 169, 106, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.8), transparent 24%),
    linear-gradient(145deg, #E9DFD4, #C9B79B);
  color: #806A45;
  font-family: 'Newsreader', serif;
  font-size: 3.2rem;
}

.person h3 {
  margin-bottom: 0.3rem;
}

.person .person-role {
  font-size: 0.9rem;
  color: #C8A96A;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.person p {
  margin: 0 auto 0.8rem;
  color: #6B5D52;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3.5rem 0;
  border-top: 1px solid #E3DDD6;
  text-align: center;
}

.footer-logo {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #3B312B;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: #8C7E73;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #C8A96A;
}

.footer-copy {
  font-size: 0.78rem;
  color: #B0A69D;
}

/* ========== BLOCKQUOTE ========== */
.content-block blockquote {
  border-left: 2px solid #C8A96A;
  padding-left: 1.6rem;
  margin: 2rem 0;
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #6B5D52;
  line-height: 1.5;
}

/* ========== DIVIDER ========== */
.divider {
  width: 60px;
  height: 1px;
  background: #C8A96A;
  margin: 3rem auto;
  border: none;
}

/* ========== FADE-IN ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

@media print {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .person-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 0;
  }

  .home-hero {
    min-height: 92vh;
    justify-content: center;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(29, 24, 20, 0.76), rgba(29, 24, 20, 0.28));
  }

  .home-hero .hero-image {
    object-position: 61% center;
  }

  .home-hero .hero-content {
    margin: 4rem 1rem 0;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .home-hero .btn-group {
    justify-content: center;
  }

  .hero-projects-header {
    bottom: -6rem;
    padding: 0 1rem;
  }

  .hero-projects-header p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.6rem;
    box-shadow: 0 8px 24px rgba(59, 49, 43, 0.06);
  }

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

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    aspect-ratio: 16 / 10;
  }

  .about-image--featured {
    height: clamp(270px, 68vw, 380px);
    aspect-ratio: auto;
    object-position: center 62%;
  }

  .person-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .content-section {
    padding: 3.5rem 0;
  }

  .hero--sub {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero--photo {
    min-height: 48vh;
  }

  .route-choice-grid,
  .route-story-grid,
  .route-practical__columns,
  .host-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .retreat-hero {
    justify-content: center;
  }

  .retreat-hero .hero-image {
    object-position: 58% center;
  }

  .retreat-hero .hero-content {
    max-width: 680px;
    margin: 4.5rem 1rem 0;
    padding: 2.5rem 1.2rem;
    text-align: center;
  }

  .retreat-hero .btn-group {
    justify-content: center;
  }

  .retreat-day {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .retreat-day__label {
    display: flex;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 106, 0.55);
    align-items: flex-end;
    gap: 1rem;
  }

  .retreat-day__label span {
    margin-bottom: 0;
    font-size: 2.8rem;
  }

  .retreat-day__label h3 {
    margin-bottom: 0.3rem;
  }

  .sound-section__grid,
  .retreat-practical__grid {
    grid-template-columns: 1fr;
  }

  .sound-section__copy {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid rgba(231, 205, 149, 0.42);
    border-left: 0;
  }

  .sound-section__photo {
    max-width: 640px;
  }

  .sound-section__orb {
    right: -24rem;
  }

  .host-card--guest {
    grid-column: auto;
    max-width: none;
  }

  .retreat-practical__note {
    align-items: flex-start;
    flex-direction: column;
  }

  .retreat-practical__note p:last-child {
    text-align: left;
  }

  .route-story-grid--reverse > :first-child,
  .route-story-grid--reverse > :last-child {
    order: initial;
  }

  .route-choice {
    min-height: 500px;
  }

  .route-facts,
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .india-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .form-section {
    padding: 2rem 1.6rem;
  }

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

@media (max-width: 540px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .india-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .india-gallery__item--tall,
  .india-gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .route-stops,
  .route-facts,
  .experience-grid,
  .route-cta-options {
    grid-template-columns: 1fr;
  }

  .route-stop--wide {
    grid-column: auto;
  }

  .route-story-media,
  .route-story-media img {
    min-height: 320px;
  }

  .retreat-hero {
    min-height: 92vh;
  }

  .retreat-hero__intro br {
    display: none;
  }

  .retreat-hero__meta {
    line-height: 1.8 !important;
  }

  .retreat-intro-section::before {
    font-size: 12rem;
  }

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

  .retreat-practical__facts {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .retreat-practical__deposit {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Legal pages and cookie consent */
.legal-page {
  padding-top: 9rem;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: 2rem;
}

.legal-page p {
  max-width: 760px;
}

.footer-cookie-link {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.footer-cookie-link:hover {
  color: #C8A96A;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  max-width: 720px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(200, 169, 106, 0.55);
  box-shadow: 0 12px 36px rgba(59, 49, 43, 0.2);
  background: #FFFDF8;
  color: #3B312B;
}

.cookie-banner strong {
  font-family: 'Newsreader', serif;
  font-size: 1.35rem;
}

.cookie-banner p {
  margin: 0.35rem 0 0;
  font-size: 0.83rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

.cookie-banner .btn {
  padding: 0.65rem 0.85rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    display: block;
  }

  .cookie-banner__actions {
    margin-top: 1rem;
  }
}

.about-art {
  display: grid;
  min-height: 460px;
  padding: clamp(2rem, 5vw, 4rem);
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(246,226,180,.78), transparent 22%),
    linear-gradient(150deg, #5D685B, #B69B76 68%, #E4D6C7);
  color: #fff;
  text-align: center;
}

.about-art span { font-family:'Newsreader',serif; font-size:clamp(2rem,5vw,4rem); line-height:1; }
.about-art small { display:block; margin-top:1rem; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; }

.route-photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.route-photo-band figure { overflow:hidden; border-radius:10px; background:#D8CEC4; }
.route-photo-band img { width:100%; height:100%; min-height:260px; object-fit:cover; }
.route-photo-band figure:nth-child(2) { transform: translateY(1.5rem); }

/* Keep image rows aligned on desktop as well as mobile. */
.route-photo-band figure:nth-child(2),
.retreat-photo:nth-child(2),
.surya-gallery figure:nth-child(2) {
  transform: none;
}

.experience-grid--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-grid--compact .experience-card {
  min-height: 0;
  padding: 1.25rem;
}

.experience-grid--compact .experience-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.65rem;
}

.experience-grid--compact .experience-card h3 {
  font-size: 1.25rem;
}

.hosts-section .host-card--portrait {
  grid-template-columns: minmax(150px, 220px) 1fr;
  align-items: start;
}

.hosts-section .host-card__portrait {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  font-size: 0.82rem;
}

.footer-social a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-grid--single-column {
  grid-template-columns: 1fr;
}

.route-detail-list { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin-top:2.2rem; }
.route-detail-list article { padding:2rem; border:1px solid #E3DDD6; border-radius:10px; background:#fff; }
.route-detail-list h3 { color:#A5844A; margin-bottom:.55rem; }
.route-detail-list p { color:#6B5D52; font-size:.95rem; }

.route-fit { background:#EFE7DF; }
.route-fit .content-block { max-width:840px; margin:0 auto; }
.route-fit__note { margin-top:2rem; padding:1.5rem; border-left:2px solid #C8A96A; background:rgba(255,255,255,.58); }
.route-reservation { margin-top:2rem; padding:1.6rem; border:1px solid rgba(231,205,149,.5); border-radius:10px; background:rgba(255,255,255,.08); }
.route-reservation strong { color:#F4E2B9; }
.form-intent-note { margin:.4rem 0 1.5rem; color:#6B5D52; font-size:.88rem; }

.experience-card__icon svg { width:32px; height:32px; stroke:currentColor; fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

.program-hero {
  min-height: 68vh;
  background:
    radial-gradient(circle at 78% 28%, rgba(249,222,166,.62), transparent 18%),
    linear-gradient(135deg,#D9CABB,#F4EFEA 52%,#A9B1A0);
}
.program-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2.5rem; }
.program-card { padding:2rem; border:1px solid #E3DDD6; border-radius:12px; background:#fff; }
.program-card h3 { margin-bottom:.75rem; }
.program-card p { color:#6B5D52; font-size:.94rem; }
.program-flow { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:2.5rem; counter-reset:flow; }
.program-flow article { position:relative; padding-top:4rem; }
.program-flow article::before { counter-increment:flow; content:'0' counter(flow); position:absolute; top:0; left:0; color:#C8A96A; font-family:'Newsreader',serif; font-size:2.8rem; }

.thank-you-page { display:flex; min-height:100vh; align-items:center; padding:8rem 0 4rem; background:radial-gradient(circle at 50% 30%,#FFFDF8,#EADFD4); }
.thank-you-card { padding:clamp(2rem,6vw,5rem); border:1px solid #E3DDD6; border-radius:18px; background:rgba(255,255,255,.88); box-shadow:0 24px 70px rgba(59,49,43,.1); text-align:center; }
.thank-you-card p { margin:.7rem auto; }
.thank-you-signature { margin-top:1.8rem !important; font-family:'Newsreader',serif; font-size:1.3rem !important; }

@media (max-width: 768px) {
  .route-photo-band,
  .route-detail-list,
  .retreat-photo-grid,
  .surya-gallery,
  .program-grid,
  .program-flow {
    grid-template-columns:1fr;
  }

  .route-photo-band figure:nth-child(2) { transform:none; }
  .retreat-photo:nth-child(2),
  .surya-gallery figure:nth-child(2) { transform:none; }

  .retreat-group-photo,
  .retreat-group-photo img { min-height:300px; }
}

@media (max-width: 768px) {
  .experience-grid--compact { grid-template-columns: 1fr; }
  .hosts-section .host-card__portrait { width: 220px; height: auto; }
}

@media (max-width: 540px) {
  .hosts-section .host-card--portrait { grid-template-columns: 1fr; }
  .hosts-section .host-card__portrait { margin: 0 auto; }
}
