/* ==========================================================================
   GLOBAL STYLES & VARIABLES
   ========================================================================== */
:root {
  --jsr-forest: #3C664C;
  --jsr-sage: #7A9E8E;
  --jsr-light-sage: #D4E3DC;
  --jsr-cream: #F5F0E8;
  --jsr-tan: #C8B89A;
  --jsr-charcoal: #2B2B2B;
  --jsr-white: #ffffff;
  --jsr-deep: #23382c;
  --jsr-warm-bg: #ece5de;
  --jsr-warm-text: #2f2a25;
  --jsr-warm-muted: #6e6257;
  --jsr-warm-line: #d9cec1;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Jost', sans-serif;
  background-color: var(--jsr-cream);
  color: var(--jsr-charcoal);
  scroll-behavior: smooth;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.jsr-header-wrap {
  position: relative;
  z-index: 9999;
  width: 100%;
  font-family: 'Jost', sans-serif;
}

.jsr-header-shell {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0;
  pointer-events: none;
}

.jsr-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 3px 34px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(60, 102, 76, 0.96) 0%, rgba(54, 93, 69, 0.94) 52%, rgba(47, 81, 60, 0.96) 100%);
  border-bottom: 1px solid rgba(245, 240, 232, 0.10);
  transition: all 0.45s ease;
  pointer-events: auto;
  animation: jsrHeaderDrop 0.95s cubic-bezier(.22,1,.36,1) both;
  box-shadow: 0 10px 30px rgba(26, 39, 31, 0.12), 0 2px 0 rgba(255, 255, 255, 0.04) inset;
}

.jsr-header.is-scrolled {
  background: linear-gradient(135deg, rgba(60, 102, 76, 0.96) 0%, rgba(54, 93, 69, 0.94) 52%, rgba(47, 81, 60, 0.96) 100%);
  border-bottom: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow: 0 10px 30px rgba(26, 39, 31, 0.12), 0 2px 0 rgba(255, 255, 255, 0.04) inset;
  padding: 3px 34px;
}

.jsr-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 150px;
}

.jsr-brand a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.jsr-brand img {
  width: auto;
  height: 90px;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.jsr-brand a:hover img {
  transform: translateY(-1px) scale(1.015);
}

.jsr-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.jsr-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.jsr-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.96);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.28s ease;
  will-change: transform;
}

.jsr-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0), rgba(245, 240, 232, 0.95), rgba(245, 240, 232, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .36s cubic-bezier(.22,1,.36,1), background .36s ease;
  border-radius: 99px;
}

.jsr-menu a:hover,
.jsr-menu a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.jsr-menu a:hover::after,
.jsr-menu a:focus-visible::after {
  transform: scaleX(1);
}

.jsr-menu-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jsr-menu-drop > a {
  gap: 7px;
}

.jsr-menu-drop > a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  transition: transform .28s ease;
}

.jsr-menu-drop:hover > a::before,
.jsr-menu-drop:focus-within > a::before {
  transform: rotate(225deg) translateY(-1px);
}

.jsr-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 235px;
  padding: 14px 10px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #F5F0E8 0%, #E9DED0 100%);
  border: 1px solid rgba(200, 184, 154, 0.60);
  box-shadow: 0 24px 50px rgba(20, 30, 24, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.60);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  z-index: 99999;
}

.jsr-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
  background: transparent;
}

.jsr-menu-drop:hover .jsr-dropdown,
.jsr-menu-drop:focus-within .jsr-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jsr-dropdown a {
  width: 100%;
  justify-content: flex-start;
  padding: 11px 14px;
  margin-bottom: 6px;
  border-radius: 14px;
  color: #2B2B2B !important;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(60, 102, 76, 0.08);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: none;
  text-decoration: none;
  transition: all 0.28s ease;
}

.jsr-dropdown a:last-child {
  margin-bottom: 0;
}

.jsr-dropdown a::after {
  display: none;
}

.jsr-dropdown a:hover,
.jsr-dropdown a:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, #3C664C 0%, #7A9E8E 100%) !important;
  transform: translateX(4px);
  box-shadow: 0 9px 18px rgba(60, 102, 76, 0.20);
  outline: none;
}

.jsr-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  min-height: 48px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.16), rgba(245, 240, 232, 0.08));
  color: var(--jsr-cream);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(22, 35, 28, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.jsr-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .18) 50%, transparent 78%);
  transform: translateX(-130%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}

.jsr-cta span {
  position: relative;
  z-index: 1;
}

.jsr-cta:hover,
.jsr-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 30, 24, 0.22), 0 4px 12px rgba(60, 102, 76, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  outline: none;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.22), rgba(245, 240, 232, 0.12));
  border-color: rgba(245, 240, 232, 0.32);
  color: #ffffff !important;
}

.jsr-cta:hover::before,
.jsr-cta:focus-visible::before {
  transform: translateX(130%);
}

.jsr-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: none;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(20, 30, 24, 0.14);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.jsr-mobile-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(20, 30, 24, 0.18);
}

.jsr-mobile-toggle span {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 1.8px;
  background: var(--jsr-cream);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: all .32s ease;
}

.jsr-mobile-toggle span:nth-child(1) { top: 17px; }
.jsr-mobile-toggle span:nth-child(2) { top: 23px; }
.jsr-mobile-toggle span:nth-child(3) { top: 29px; }

.jsr-mobile-toggle.is-active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.jsr-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.jsr-mobile-toggle.is-active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.jsr-mobile-panel {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.jsr-hero-sec {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100svh;
  background: #f5f0e8;
  font-family: 'Jost', sans-serif;
  isolation: isolate;
}

.jsr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.jsr-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.98) 0%, rgba(245, 240, 232, 0.95) 35%, rgba(245, 240, 232, 0.8) 50%, rgba(245, 240, 232, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.jsr-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 0%;
  pointer-events: none;
}

.jsr-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 28px 72px;
}

.jsr-hero-content {
  max-width: 720px;
  position: relative;
}

.jsr-hero-content > * {
  animation: jsrHeroReveal 0.9s cubic-bezier(.22,1,.36,1) both;
}

.jsr-hero-title {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7vw, 102px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--jsr-forest);
  text-wrap: balance;
  text-shadow: none;
  animation-delay: 0.18s;
}

.jsr-hero-title span {
  display: block;
  color: var(--jsr-forest);
}

.jsr-hero-text {
  max-width: 640px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--jsr-charcoal);
  text-shadow: none;
  animation-delay: 0.28s;
}

.jsr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  animation-delay: 0.38s;
}

.jsr-hero-btn {
  --btn-shadow: 0 16px 36px rgba(60, 102, 76, 0.20);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.jsr-hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .22) 48%, transparent 78%);
  transform: translateX(-130%);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}

.jsr-hero-btn span,
.jsr-hero-btn svg {
  position: relative;
  z-index: 1;
}

.jsr-hero-btn:hover::before,
.jsr-hero-btn:focus-visible::before {
  transform: translateX(130%);
}

.jsr-hero-btn:hover,
.jsr-hero-btn:focus-visible {
  transform: translateY(-4px) scale(1.01);
  outline: none;
}

.jsr-hero-btn-primary {
  background: linear-gradient(135deg, #456f55 0%, #3C664C 45%, #335743 100%);
  border: 1px solid rgba(60, 102, 76, 0.20);
  color: var(--jsr-cream);
  box-shadow: var(--btn-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.jsr-hero-btn-primary:hover,
.jsr-hero-btn-primary:focus-visible {
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(60, 102, 76, 0.26), 0 8px 16px rgba(60, 102, 76, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.jsr-hero-btn-secondary {
  background: linear-gradient(135deg, #E8CFA3 0%, #D9B97A 52%, #C8A96A 100%);
  border: 1px solid rgba(200, 169, 106, 0.65);
  color: var(--jsr-charcoal);
  box-shadow: 0 12px 28px rgba(200, 169, 106, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.jsr-hero-btn-secondary:hover,
.jsr-hero-btn-secondary:focus-visible {
  background: linear-gradient(135deg, #EED9B2 0%, #E0C58B 52%, #D0AF71 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(200, 169, 106, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.jsr-hero-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.jsr-hero-scroll {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  color: var(--jsr-forest);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: jsrHeroReveal 0.9s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 0.48s;
}

.jsr-hero-scroll-line {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 102, 76, 0.6), rgba(60, 102, 76, 0));
  position: relative;
  overflow: hidden;
}

.jsr-hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 100%;
  background: var(--jsr-forest);
  animation: jsrScrollLine 2.2s ease-in-out infinite;
}

/* ==========================================================================
   QUOTE SECTION
   ========================================================================== */
#jsrQuoteSameContent {
  width: 100%;
  background: var(--jsr-cream);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Jost', sans-serif;
}

#jsrQuoteSameContent .jsrQ-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

#jsrQuoteSameContent .jsrQ-kicker {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--jsr-warm-muted);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: .6s ease;
}

#jsrQuoteSameContent .jsrQ-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.1;
  font-style: italic;
  font-weight: 400;
  color: var(--jsr-forest);
  opacity: 0;
  transform: translateY(16px);
  transition: .8s cubic-bezier(.22,1,.36,1);
}

#jsrQuoteSameContent .jsrQ-line {
  width: 80px;
  height: 1px;
  background: var(--jsr-warm-line);
  margin: 36px auto 0;
  opacity: 0;
  transform: scaleX(.6);
  transition: .8s ease .2s;
}

#jsrQuoteSameContent.active .jsrQ-kicker,
#jsrQuoteSameContent.active .jsrQ-title {
  opacity: 1;
  transform: translateY(0);
}

#jsrQuoteSameContent.active .jsrQ-line {
  opacity: 1;
  transform: scaleX(1);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
#jsrAboutFinal {
  background: var(--jsr-warm-bg);
  padding: 100px 24px;
  font-family: 'Jost', sans-serif;
}

#jsrAboutFinal .jsrA-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

#jsrAboutFinal .jsrA-imgWrap {
  position: relative;
  max-width: 500px;
}

#jsrAboutFinal .jsrA-corner {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 90px;
  height: 90px;
  border-top: 2px solid var(--jsr-warm-line);
  border-right: 2px solid var(--jsr-warm-line);
  border-radius: 0 18px 0 0;
}

#jsrAboutFinal .jsrA-corner-bottom-left {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 90px;
  height: 90px;
  border-bottom: 2px solid var(--jsr-warm-line);
  border-left: 2px solid var(--jsr-warm-line);
  border-radius: 0 0 0 18px;
}

#jsrAboutFinal .jsrA-img {
  overflow: hidden;
  border-radius: 14px;
}

#jsrAboutFinal .jsrA-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  display: block;
}

#jsrAboutFinal .jsrA-kicker {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--jsr-forest);
  margin-bottom: 22px;
}

#jsrAboutFinal .jsrA-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 0;
  color: var(--jsr-forest);
}

#jsrAboutFinal .jsrA-title span {
  font-style: italic;
  font-weight: 400;
}

#jsrAboutFinal .jsrA-line {
  width: 90px;
  height: 1px;
  background: var(--jsr-warm-line);
  margin: 22px 0;
}

#jsrAboutFinal .jsrA-text p {
  margin: 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5e554c;
}

#jsrAboutFinal .jsrA-text strong {
  color: var(--jsr-forest);
}

#jsrAboutFinal .jsrA-tags {
  margin-top: 24px;
}

#jsrAboutFinal .jsrA-tags span {
  margin-right: 12px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--jsr-forest);
}

#jsrAboutFinal .jsrA-btnWrap {
  margin-top: 30px;
}

#jsrAboutFinal .jsrA-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--jsr-forest);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

#jsrAboutFinal .jsrA-btn:hover {
  background: #2f4f3e;
}

/* ==========================================================================
   METHOD SECTION
   ========================================================================== */
.jsr-method-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 20px 80px;
  background: var(--jsr-cream);
  font-family: 'Jost', sans-serif;
}

.jsr-method-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.jsr-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 56px;
  align-items: start;
}

.jsr-method-left {
  position: relative;
  padding-top: 6px;
}

.jsr-method-kicker {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--jsr-forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.jsr-method-title {
  margin: 22px 0 0;
  max-width: 640px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--jsr-forest);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease .08s, transform 1s cubic-bezier(.22,1,.36,1) .08s;
}

.jsr-method-divider {
  width: 120px;
  height: 1px;
  margin: 24px 0 0;
  background: var(--jsr-warm-line);
  opacity: 0;
  transform: scaleX(.76);
  transform-origin: left center;
  transition: opacity .9s ease .2s, transform .9s cubic-bezier(.22,1,.36,1) .2s;
}

.jsr-method-subtitle {
  margin: 24px 0 0;
  max-width: 620px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.48rem, 2.2vw, 1.88rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--jsr-charcoal);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .95s ease .24s, transform .95s cubic-bezier(.22,1,.36,1) .24s;
}

.jsr-method-subtitle .jsr-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--jsr-forest);
}

.jsr-method-copy {
  margin: 24px 0 0;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.88;
  color: rgba(43, 43, 43, 0.82);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease .28s, transform 1s cubic-bezier(.22,1,.36,1) .28s;
}

.jsr-method-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease .32s, transform 1s cubic-bezier(.22,1,.36,1) .32s;
}

.jsr-method-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--jsr-warm-text);
}

.jsr-method-points li span {
  text-align: justify;
}

.jsr-method-points li i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  margin-top: 4px;
  background: #ede3d8;
}

.jsr-method-points li i::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jsr-forest);
}

.jsr-method-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease .4s, transform 1s cubic-bezier(.22,1,.36,1) .4s;
}

.jsr-method-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jsr-forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jsr-method-right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.jsr-method-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
}

.jsr-method-cards {
  position: relative;
  width: 100%;
  display: grid;
  gap: 65px;
  height: 100%;
  align-content: space-between;
}

.jsr-method-card {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 24px;
  background: var(--jsr-white);
  border: 1px solid var(--jsr-warm-line);
  box-shadow: 0 18px 38px rgba(82, 63, 48, .06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.9s cubic-bezier(.22,1,.36,1);
}

.jsr-method-card:nth-child(1) { transition-delay: .34s; }
.jsr-method-card:nth-child(2) { transition-delay: .44s; }
.jsr-method-card:nth-child(3) { transition-delay: .54s; }

.jsr-method-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 44px rgba(82,63,48,.10);
  border-color: #dccfc1;
}

.jsr-method-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.jsr-method-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ece4;
  transition: transform .35s ease;
}

.jsr-method-card:hover .jsr-method-icon {
  transform: translateY(-2px);
}

.jsr-method-icon svg {
  width: 25px;
  height: 25px;
  stroke: var(--jsr-forest);
}

.jsr-method-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--jsr-forest);
  letter-spacing: -0.01em;
}

.jsr-method-card p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--jsr-warm-muted);
  text-align: justify;
}

.jsr-method-section.is-visible .jsr-method-kicker,
.jsr-method-section.is-visible .jsr-method-title,
.jsr-method-section.is-visible .jsr-method-subtitle,
.jsr-method-section.is-visible .jsr-method-copy,
.jsr-method-section.is-visible .jsr-method-points,
.jsr-method-section.is-visible .jsr-method-mini,
.jsr-method-section.is-visible .jsr-method-divider,
.jsr-method-section.is-visible .jsr-method-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   PROGRAMMES SECTION
   ========================================================================== */
.jsr-programmes-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 120px 20px;
  background: var(--jsr-cream);
  isolation: isolate;
}

.jsr-programmes-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.jsr-programmes-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jsr-programmes-kicker {
  display: inline-block;
  padding: 0;
  color: var(--jsr-forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.jsr-programmes-title {
  margin: 24px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--jsr-forest);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease .08s, transform 1s cubic-bezier(.22,1,.36,1) .08s;
}

.jsr-programmes-title .jsr-soft-highlight {
  font-style: italic;
  font-weight: 400;
  color: var(--jsr-charcoal);
}

.jsr-programmes-sub {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.82);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s ease .18s, transform 1s cubic-bezier(.22,1,.36,1) .18s;
}

.jsr-programmes-divider {
  width: 130px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, rgba(60, 102, 76, 0), rgba(60, 102, 76, .42), rgba(60, 102, 76, 0));
  opacity: 0;
  transform: scaleX(.75);
  transition: opacity .9s ease .28s, transform .9s cubic-bezier(.22,1,.36,1) .28s;
}

.jsr-programmes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.jsr-programmes-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 16px 38px rgba(43, 43, 43, 0.08), 0 4px 14px rgba(60, 102, 76, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(34px);
  transition: all .85s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.jsr-programmes-card:nth-child(1) { transition-delay: .12s; }
.jsr-programmes-card:nth-child(2) { transition-delay: .22s; }
.jsr-programmes-card:nth-child(3) { transition-delay: .32s; }
.jsr-programmes-card:nth-child(4) { transition-delay: .42s; }

.jsr-programmes-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(60, 102, 76, 0.14), rgba(122, 158, 142, 0.08), rgba(255, 255, 255, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .7;
}

.jsr-programmes-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 28px 52px rgba(43, 43, 43, 0.12), 0 10px 22px rgba(60, 102, 76, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border-color: rgba(60, 102, 76, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
}

.jsr-programmes-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3.5;
  background: #e9eee9;
}

.jsr-programmes-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter .5s ease;
}

.jsr-programmes-card:hover .jsr-programmes-media img {
  transform: scale(1.10);
  filter: saturate(1.02);
}

.jsr-programmes-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.jsr-programmes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.jsr-programmes-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(212, 227, 220, 0.52);
  border: 1px solid rgba(60, 102, 76, 0.10);
  color: var(--jsr-forest);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jsr-programmes-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--jsr-forest);
}

.jsr-programmes-card p {
  margin: 14px 0 0;
  font-size: .98rem;
  line-height: 1.8;
  color: rgba(43, 43, 0.84);
}

.jsr-programmes-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  text-decoration: none;
  color: var(--jsr-forest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: max-content;
  transition: all 0.3s ease;
}

.jsr-programmes-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.3s ease;
}

.jsr-programmes-link:hover {
  color: var(--jsr-sage);
}

.jsr-programmes-link:hover svg {
  transform: translate(2px, -2px);
}

.jsr-programmes-footer {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.jsr-programmes-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%), linear-gradient(135deg, #456f55 0%, #3C664C 48%, #345843 100%);
  color: var(--jsr-cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(60, 102, 76, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: all 0.35s ease;
  white-space: nowrap;
}

.jsr-programmes-cta:hover {
  transform: translateY(-4px);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(60, 102, 76, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.jsr-programmes-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.jsr-programmes-section.is-visible .jsr-programmes-kicker,
.jsr-programmes-section.is-visible .jsr-programmes-title,
.jsr-programmes-section.is-visible .jsr-programmes-sub,
.jsr-programmes-section.is-visible .jsr-programmes-divider,
.jsr-programmes-section.is-visible .jsr-programmes-card {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   EXPERIENCE & BENEFITS SECTION
   ========================================================================== */
.jsr-benefits-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 20px 120px;
  background: var(--jsr-cream);
  font-family: 'Jost', sans-serif;
}

.jsr-benefits-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.jsr-benefits-head {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.jsr-benefits-kicker {
  display: inline-block;
  color: var(--jsr-forest);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: .9s ease;
}

.jsr-benefits-title {
  margin: 26px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .98;
  font-weight: 500;
  color: var(--jsr-charcoal);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: 1s ease;
}

.jsr-benefits-title .jsr-title-accent {
  color: var(--jsr-forest);
  font-style: italic;
  font-weight: 400;
}

.jsr-benefits-divider {
  width: 112px;
  height: 1px;
  margin: 26px auto 22px;
  background: rgba(60, 102, 76, .24);
  opacity: 0;
  transform: scaleX(.75);
  transition: .9s ease;
}

.jsr-benefits-desc {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.74);
  opacity: 0;
  transform: translateY(24px);
  transition: 1s ease;
}

.jsr-benefits-layout {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

.jsr-benefits-visual {
  width: 100%;
  position: sticky;
  top: 120px;
  display: flex;
  align-items: stretch;
}

.jsr-benefits-main {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 24px 60px rgba(32, 52, 40, 0.12);
  background: #dfe8e1;
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: 1s cubic-bezier(.22,1,.36,1);
}

.jsr-benefits-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  transition: 1.2s ease;
}

.jsr-benefits-main:hover img {
  transform: scale(1.01);
}

.jsr-benefits-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.jsr-benefit-card {
  min-height: 206px;
  padding: 24px;
  border-radius: 28px;
  background: #fdfaf6;
  border: 1px solid rgba(60, 102, 76, 0.06);
  box-shadow: 0 12px 28px rgba(60, 102, 76, 0.04);
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.8s ease;
}

.jsr-benefit-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(60, 102, 76, 0.08);
  border-color: rgba(60, 102, 76, 0.12);
}

.jsr-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(60, 102, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--jsr-forest);
  box-shadow: 0 8px 20px rgba(60, 102, 76, 0.02);
}

.jsr-benefit-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
}

.jsr-benefit-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 2vw, 2.2rem);
  line-height: 1.02;
  color: var(--jsr-forest);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.jsr-benefit-card p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(43, 43, 43, 0.76);
}

.jsr-benefits-section.is-visible .jsr-benefits-kicker,
.jsr-benefits-section.is-visible .jsr-benefits-title,
.jsr-benefits-section.is-visible .jsr-benefits-divider,
.jsr-benefits-section.is-visible .jsr-benefits-desc,
.jsr-benefits-section.is-visible .jsr-benefits-main,
.jsr-benefits-section.is-visible .jsr-benefit-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.jsr-benefits-section.is-visible .jsr-benefits-kicker { transition-delay: .04s; }
.jsr-benefits-section.is-visible .jsr-benefits-title { transition-delay: .10s; }
.jsr-benefits-section.is-visible .jsr-benefits-divider { transition-delay: .16s; }
.jsr-benefits-section.is-visible .jsr-benefits-desc { transition-delay: .22s; }
.jsr-benefit-card:nth-child(1) { transition-delay: .08s; }
.jsr-benefit-card:nth-child(2) { transition-delay: .14s; }
.jsr-benefit-card:nth-child(3) { transition-delay: .20s; }
.jsr-benefit-card:nth-child(4) { transition-delay: .26s; }
.jsr-benefit-card:nth-child(5) { transition-delay: .32s; }
.jsr-benefit-card:nth-child(6) { transition-delay: .38s; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.jsr-testimonials-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 150px 20px 120px;
  background: radial-gradient(circle at 12% 18%, rgba(212,227,220,0.22), transparent 28%), radial-gradient(circle at 88% 82%, rgba(200,184,154,0.16), transparent 30%), linear-gradient(180deg, #f7f3ec 0%, #f5f0e8 56%, #f7f3ec 100%);
  font-family: 'Jost', sans-serif;
  isolation: isolate;
}

.jsr-testimonials-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.jsr-testimonials-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jsr-testimonials-kicker {
  display: inline-block;
  padding: 0;
  color: var(--jsr-forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.jsr-testimonials-title {
  margin: 24px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--jsr-forest);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease .08s, transform 1s cubic-bezier(.22,1,.36,1) .08s;
}

.jsr-testimonials-sub {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.82);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s ease .18s, transform 1s cubic-bezier(.22,1,.36,1) .18s;
}

.jsr-testimonials-divider {
  width: 130px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, rgba(60, 102, 76, 0), rgba(60, 102, 76, .42), rgba(60, 102, 76, 0));
  opacity: 0;
  transform: scaleX(.75);
  transition: opacity .9s ease .28s, transform .9s cubic-bezier(.22,1,.36,1) .28s;
}

.jsr-testimonials-slider-wrap {
  position: relative;
  z-index: 2;
}

.jsr-testimonials-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 34px;
}

.jsr-testimonials-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .75s cubic-bezier(.22,1,.36,1);
}

.jsr-tm-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  padding: 30px 28px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 22px 48px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(26px);
  transition: all 1s cubic-bezier(.22,1,.36,1);
}

.jsr-tm-card:nth-child(1) { transition-delay: .12s; }
.jsr-tm-card:nth-child(2) { transition-delay: .22s; }
.jsr-tm-card:nth-child(3) { transition-delay: .32s; }

.jsr-tm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(60, 102, 76, 0.14), rgba(122, 158, 142, 0.08), rgba(255, 255, 255, 0.10));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}

.jsr-tm-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 227, 220, 0.34), transparent 70%);
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

.jsr-tm-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(60, 102, 76, 0.18);
  box-shadow: 0 30px 62px rgba(43, 43, 43, 0.12), 0 10px 20px rgba(60, 102, 76, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.jsr-tm-card:hover::after {
  transform: scale(1.12);
  opacity: 1;
}

.jsr-tm-bgimg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .16;
  pointer-events: none;
}

.jsr-tm-bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}

.jsr-tm-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.76), rgba(245, 240, 232, 0.92));
  pointer-events: none;
}

.jsr-tm-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jsr-tm-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.jsr-tm-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.jsr-tm-rating svg {
  width: 15px;
  height: 15px;
  fill: #c8b89a;
  opacity: .9;
}

.jsr-tm-tag {
  display: inline-block;
  color: var(--jsr-forest);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jsr-tm-quote-mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(212,227,220,0.55), rgba(255,255,255,0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 12px 22px rgba(60, 102, 76, 0.06);
  opacity: 0;
  transform: translateY(10px) scale(.94);
  transition: opacity .8s ease .55s, transform .8s cubic-bezier(.22,1,.36,1) .55s;
}

.jsr-tm-quote-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(60, 102, 76, 0.66);
  transform: translateY(-3px);
}

.jsr-tm-quote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2.1vw, 2.25rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--jsr-forest);
  letter-spacing: -0.015em;
}

.jsr-tm-bottom {
  margin-top: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.jsr-tm-person h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--jsr-charcoal);
  letter-spacing: .01em;
}

.jsr-tm-person p {
  margin: 6px 0 0;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.68);
}

.jsr-tm-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.jsr-tm-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(60, 102, 76, 0.12);
  box-shadow: 0 12px 22px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: all 0.3s ease;
}

.jsr-tm-nav:hover {
  transform: translateY(-3px);
  background: rgba(212, 227, 220, 0.78);
  box-shadow: 0 16px 26px rgba(43, 43, 43, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.jsr-tm-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--jsr-forest);
}

.jsr-tm-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.jsr-tm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(60, 102, 76, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .3s ease;
}

.jsr-tm-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3C664C, #7A9E8E);
}

.jsr-testimonials-section.is-visible .jsr-testimonials-kicker,
.jsr-testimonials-section.is-visible .jsr-testimonials-title,
.jsr-testimonials-section.is-visible .jsr-testimonials-sub,
.jsr-testimonials-section.is-visible .jsr-testimonials-divider,
.jsr-testimonials-section.is-visible .jsr-tm-card {
  opacity: 1;
  transform: translateY(0);
}

.jsr-testimonials-section.is-visible .jsr-tm-quote-mark {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.jsr-finalcta-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 120px 20px;
  background: radial-gradient(circle at 18% 20%, rgba(122, 158, 142, 0.18), transparent 28%), radial-gradient(circle at 82% 78%, rgba(200, 184, 154, 0.12), transparent 30%), linear-gradient(135deg, #2f4f3e 0%, #3C664C 38%, #345843 68%, #2c4a3a 100%);
  font-family: 'Jost', sans-serif;
  isolation: isolate;
}

.jsr-finalcta-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.jsr-finalcta-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 54px;
  border-radius: 38px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(245, 240, 232, 0.12);
  box-shadow: 0 28px 56px rgba(14, 24, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.jsr-finalcta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.16), rgba(122, 158, 142, 0.10), rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}

.jsr-finalcta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(245, 240, 232, 0.08), transparent 24%), radial-gradient(circle at 80% 82%, rgba(122, 158, 142, 0.08), transparent 24%);
  pointer-events: none;
}

.jsr-finalcta-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0;
  color: var(--jsr-cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.jsr-finalcta-title {
  position: relative;
  z-index: 2;
  margin: 26px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--jsr-cream);
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: all 1.05s cubic-bezier(.22,1,.36,1);
  text-shadow: 0 10px 28px rgba(14, 24, 18, 0.20);
}

.jsr-finalcta-title .jsr-soft-highlight {
  font-style: italic;
  font-weight: 400;
}

.jsr-finalcta-divider {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0), rgba(245, 240, 232, .54), rgba(245, 240, 232, 0));
  opacity: 0;
  transform: scaleX(.75);
  transition: opacity .9s ease .2s, transform .9s cubic-bezier(.22,1,.36,1) .2s;
}

.jsr-finalcta-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.88);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease .18s, transform 1s cubic-bezier(.22,1,.36,1) .18s;
}

.jsr-finalcta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease .28s, transform 1s cubic-bezier(.22,1,.36,1) .28s;
}

.jsr-finalcta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}

.jsr-finalcta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .24) 50%, transparent 78%);
  transform: translateX(-130%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}

.jsr-finalcta-btn span,
.jsr-finalcta-btn svg {
  position: relative;
  z-index: 1;
}

.jsr-finalcta-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.jsr-finalcta-btn-primary {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .26), transparent 45%), linear-gradient(135deg, #f8f3ea 0%, #f5f0e8 52%, #ebe1d2 100%);
  color: var(--jsr-forest);
  box-shadow: 0 16px 28px rgba(14, 24, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(245, 240, 232, 0.18);
}

.jsr-finalcta-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--jsr-cream);
  border: 1px solid rgba(245, 240, 232, 0.18);
  box-shadow: 0 14px 24px rgba(14, 24, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.jsr-finalcta-btn:hover {
  transform: translateY(-4px);
  filter: saturate(1.04);
}

.jsr-finalcta-btn:hover::before {
  transform: translateX(130%);
}

.jsr-finalcta-btn:hover svg {
  transform: translateX(4px);
}

.jsr-finalcta-btn-primary:hover {
  box-shadow: 0 22px 36px rgba(14, 24, 18, 0.24), 0 8px 16px rgba(245, 240, 232, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.jsr-finalcta-btn-secondary:hover {
  box-shadow: 0 20px 34px rgba(14, 24, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: var(--jsr-white);
}

.jsr-finalcta-mini {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .95s ease .36s, transform .95s cubic-bezier(.22,1,.36,1) .36s;
}

.jsr-finalcta-mini span {
  display: inline-block;
  color: rgba(245, 240, 232, 0.86);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jsr-finalcta-section.is-visible .jsr-finalcta-kicker,
.jsr-finalcta-section.is-visible .jsr-finalcta-title,
.jsr-finalcta-section.is-visible .jsr-finalcta-divider,
.jsr-finalcta-section.is-visible .jsr-finalcta-text,
.jsr-finalcta-section.is-visible .jsr-finalcta-actions,
.jsr-finalcta-section.is-visible .jsr-finalcta-mini {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.jsr-contact-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 120px 20px;
  background: radial-gradient(circle at 12% 18%, rgba(212,227,220,0.20), transparent 28%), radial-gradient(circle at 88% 82%, rgba(200,184,154,0.15), transparent 30%), linear-gradient(180deg, #f7f3ec 0%, #f5f0e8 56%, #f7f3ec 100%);
  font-family: 'Jost', sans-serif;
  isolation: isolate;
}

.jsr-contact-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.jsr-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.jsr-contact-left {
  position: relative;
  min-height: 100%;
  opacity: 0;
  transform: translateY(26px);
  transition: all 1s cubic-bezier(.22,1,.36,1);
}

.jsr-contact-info-card {
  position: relative;
  height: 100%;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.60));
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 22px 48px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.jsr-contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(60, 102, 76, 0.14), rgba(122, 158, 142, 0.08), rgba(255, 255, 255, 0.10));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.jsr-contact-info-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 227, 220, 0.28), transparent 72%);
  pointer-events: none;
}

.jsr-contact-kicker {
  display: inline-block;
  padding: 0;
  color: var(--jsr-forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease .18s, transform .8s cubic-bezier(.22,1,.36,1) .18s;
}

.jsr-contact-title {
  margin: 24px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--jsr-forest);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease .26s, transform .9s cubic-bezier(.22,1,.36,1) .26s;
}

.jsr-contact-divider {
  width: 120px;
  height: 1px;
  margin: 22px 0 0;
  background: linear-gradient(90deg, rgba(60, 102, 76, 0), rgba(60, 102, 76, .42), rgba(60, 102, 76, 0));
  opacity: 0;
  transform: scaleX(.75);
  transform-origin: left center;
  transition: opacity .85s ease .34s, transform .85s cubic-bezier(.22,1,.36,1) .34s;
}

.jsr-contact-text {
  margin: 22px 0 0;
  max-width: 540px;
  font-size: 1.04rem;
  line-height: 1.9;
  color: rgba(43, 43, 43, 0.84);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease .42s, transform .9s cubic-bezier(.22,1,.36,1) .42s;
}

.jsr-contact-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.jsr-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(60, 102, 76, 0.08);
  box-shadow: 0 10px 18px rgba(43, 43, 43, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.75s cubic-bezier(.22,1,.36,1);
}

.jsr-contact-list li:nth-child(1) { transition-delay: .52s; }
.jsr-contact-list li:nth-child(2) { transition-delay: .62s; }
.jsr-contact-list li:nth-child(3) { transition-delay: .72s; }

.jsr-contact-list li:hover {
  background: rgba(212, 227, 220, 0.46);
  box-shadow: 0 16px 24px rgba(43, 43, 43, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-3px) !important;
}

.jsr-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 227, 220, 0.72), rgba(255, 255, 255, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 16px rgba(60, 102, 76, 0.06);
  transition: all .35s ease;
}

.jsr-contact-list li:hover .jsr-contact-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 22px rgba(60, 102, 76, 0.08);
}

.jsr-contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--jsr-forest);
}

.jsr-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.jsr-contact-meta span {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(60, 102, 76, 0.74);
}

.jsr-contact-meta a,
.jsr-contact-meta strong {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--jsr-charcoal);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.jsr-contact-meta a:hover {
  color: var(--jsr-forest);
}

.jsr-contact-image {
  position: relative;
  margin-top: 28px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 43, 43, 0.09), 0 6px 16px rgba(60, 102, 76, 0.06);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .95s ease .82s, transform .95s cubic-bezier(.22,1,.36,1) .82s;
}

.jsr-contact-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}

.jsr-contact-image:hover img {
  transform: scale(1.08);
}

.jsr-contact-right {
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease .14s, transform 1s cubic-bezier(.22,1,.36,1) .14s;
}

.jsr-contact-form-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 24px 52px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jsr-contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(60, 102, 76, 0.14), rgba(122, 158, 142, 0.08), rgba(255, 255, 255, 0.10));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.jsr-contact-form-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 227, 220, 0.28), transparent 72%);
  pointer-events: none;
}

.jsr-contact-form-head {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s ease .24s, transform .85s cubic-bezier(.22,1,.36,1) .24s;
}

.jsr-contact-form-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--jsr-forest);
  letter-spacing: -0.015em;
}

.jsr-contact-form-head p {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(43, 43, 43, 0.76);
}

.jsr-contact-forminator {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.94), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(60, 102, 76, 0.10);
  box-shadow: 0 16px 28px rgba(43, 43, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease .34s, transform .9s cubic-bezier(.22,1,.36,1) .34s;
}

/* Contact & Popup Form Styling */
.forminator-row {
  margin-bottom: 16px;
}

.forminator-row:last-child {
  margin-bottom: 0;
}

.forminator-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.forminator-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--jsr-forest);
}

.forminator-required {
  color: #cf2e2e;
}

.forminator-input,
.forminator-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(60, 102, 76, 0.14);
  background: #ffffff;
  color: var(--jsr-charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  transition: all 0.28s ease;
}

.forminator-input:focus,
.forminator-textarea:focus {
  outline: none;
  border-color: rgba(60, 102, 76, 0.36) !important;
  box-shadow: 0 0 0 4px rgba(122, 158, 142, 0.14) !important;
}

.forminator-button-submit {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #456f55 0%, #3C664C 50%, #345843 100%);
  color: var(--jsr-cream);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(60, 102, 76, 0.12);
  transition: all 0.3s ease;
}

.forminator-button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(60, 102, 76, 0.18);
  color: #ffffff;
}

.jsr-contact-social {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s ease .44s, transform .85s cubic-bezier(.22,1,.36,1) .44s;
}

.jsr-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(60, 102, 76, 0.08);
  color: var(--jsr-forest);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(43, 43, 43, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: all 0.3s ease;
}

.jsr-contact-chip svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.jsr-contact-chip:hover {
  transform: translateY(-3px);
  background: rgba(212, 227, 220, 0.54);
  box-shadow: 0 16px 24px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.80);
  color: var(--jsr-charcoal);
}

.jsr-contact-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  z-index: 0;
  animation: jsrContactGlow 11s ease-in-out infinite;
}

.jsr-contact-blur.one {
  top: 62px;
  right: 7%;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(212, 227, 220, 0.30), transparent 72%);
}

.jsr-contact-blur.two {
  left: 4%;
  bottom: 54px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 184, 154, 0.18), transparent 72%);
  animation-delay: -5s;
}

.jsr-contact-section.is-visible .jsr-contact-left,
.jsr-contact-section.is-visible .jsr-contact-right,
.jsr-contact-section.is-visible .jsr-contact-kicker,
.jsr-contact-section.is-visible .jsr-contact-title,
.jsr-contact-section.is-visible .jsr-contact-divider,
.jsr-contact-section.is-visible .jsr-contact-text,
.jsr-contact-section.is-visible .jsr-contact-list li,
.jsr-contact-section.is-visible .jsr-contact-image,
.jsr-contact-section.is-visible .jsr-contact-form-head,
.jsr-contact-section.is-visible .jsr-contact-forminator,
.jsr-contact-section.is-visible .jsr-contact-social {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.jsr-footer-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 20px 28px;
  background: radial-gradient(circle at 14% 18%, rgba(122, 158, 142, 0.10), transparent 26%), radial-gradient(circle at 86% 80%, rgba(200, 184, 154, 0.08), transparent 28%), linear-gradient(135deg, #23382c 0%, #2b4334 34%, #314b3b 68%, #24382d 100%);
  font-family: 'Jost', sans-serif;
  isolation: isolate;
}

.jsr-footer-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.jsr-footer-top {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr .9fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  position: relative;
  z-index: 2;
}

.jsr-footer-col {
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}

.jsr-footer-col:nth-child(1) { transition-delay: .08s; }
.jsr-footer-col:nth-child(2) { transition-delay: .16s; }
.jsr-footer-col:nth-child(3) { transition-delay: .24s; }
.jsr-footer-col:nth-child(4) { transition-delay: .32s; }

.jsr-footer-brand {
  max-width: 380px;
}

.jsr-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  margin-bottom: 20px;
}

.jsr-footer-logo img {
  display: block;
  width: auto;
  max-width: 400px;
  height: 150px;
  object-fit: contain;
  transition: all 0.35s ease;
}

.jsr-footer-logo:hover img {
  transform: translateY(-2px) scale(1.015);
  filter: drop-shadow(0 10px 18px rgba(245, 240, 232, 0.08));
}

.jsr-footer-brand p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.82);
}

.jsr-footer-heading {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 500;
  color: var(--jsr-cream);
  letter-spacing: -0.01em;
}

.jsr-footer-links,
.jsr-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.jsr-footer-links a,
.jsr-footer-contact a,
.jsr-footer-contact span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  text-decoration: none;
  color: rgba(245, 240, 232, 0.82);
  font-size: .97rem;
  line-height: 1.75;
  transition: all 0.3s ease;
  word-break: break-word;
}

.jsr-footer-links a::after,
.jsr-footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 240, 232, .88), rgba(245, 240, 232, 0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.jsr-footer-links a:hover,
.jsr-footer-contact a:hover {
  color: var(--jsr-white);
  transform: translateX(2px);
}

.jsr-footer-links a:hover::after,
.jsr-footer-contact a:hover::after {
  transform: scaleX(1);
}

.jsr-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.jsr-footer-contact-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  opacity: .82;
  flex: 0 0 18px;
}

.jsr-footer-contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgba(245, 240, 232, 0.82);
}

.jsr-footer-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.jsr-footer-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.10);
  color: rgba(245, 240, 232, 0.82);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(14, 24, 18, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.jsr-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.jsr-footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.10);
  color: rgba(245, 240, 232, 0.82);
  box-shadow: 0 10px 18px rgba(14, 24, 18, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
}

.jsr-footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.jsr-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 240, 232, 0.18);
  color: var(--jsr-white);
}

.jsr-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .95s ease .38s, transform .95s cubic-bezier(.22,1,.36,1) .38s;
}

.jsr-footer-copy {
  font-size: .94rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.72);
}

.jsr-footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  animation: jsrFooterFloat 11s ease-in-out infinite;
}

.jsr-footer-orb.one {
  width: 220px;
  height: 220px;
  top: 24px;
  left: 8%;
  background: radial-gradient(circle, rgba(122, 158, 142, 0.10), transparent 72%);
}

.jsr-footer-orb.two {
  width: 180px;
  height: 180px;
  right: 7%;
  bottom: 10px;
  background: radial-gradient(circle, rgba(200, 184, 154, 0.08), transparent 72%);
  animation-delay: -5s;
}

.jsr-footer-section.is-visible .jsr-footer-col,
.jsr-footer-section.is-visible .jsr-footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.wpr-stt-wrapper {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.wpr-stt-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
}

.wpr-stt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--jsr-white);
  border: 1px solid var(--jsr-forest);
  cursor: pointer;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.wpr-stt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpr-stt-icon svg {
  fill: var(--jsr-forest);
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.wpr-stt-btn:hover {
  background-color: var(--jsr-forest);
  transform: translateY(-3px);
}

.wpr-stt-btn:hover svg {
  fill: var(--jsr-cream);
  transform: translateY(-2px);
}

/* ==========================================================================
   NEWSLETTER POP-UP
   ========================================================================== */
.yoga-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.yoga-popup-content {
  background: #ffffff;
  width: 850px;
  max-width: 90%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  animation: popupScaleUp 0.4s ease;
}

.yoga-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.yoga-popup-close:hover {
  color: var(--jsr-forest);
}

.yoga-popup-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(63, 101, 78, 0.2), rgba(63, 101, 78, 0.4));
}

.yoga-popup-form-container {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.yoga-popup-form-container h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  color: var(--jsr-forest);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.yoga-popup-form-container p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1100px) {
  .jsr-header {
    padding: 3px 22px;
    gap: 14px;
  }
  
  .jsr-header.is-scrolled {
    padding: 3px 22px;
  }
  
  .jsr-menu a {
    padding: 10px 10px;
    font-size: 13px;
  }
  
  .jsr-cta {
    padding: 13px 16px;
    font-size: 12px;
  }
  
  .jsr-brand img {
    height: 60px;
    max-width: 200px;
  }

  .jsr-footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .jsr-footer-col:first-child {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 991px) {
  .jsr-nav {
    display: none;
  }

  .jsr-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .jsr-mobile-panel {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto 0;
    background: rgba(245, 240, 232, 0.92);
    border: 1px solid rgba(60, 102, 76, 0.10);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(43, 43, 43, 0.12);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: max-height .48s cubic-bezier(.22,1,.36,1), opacity .35s ease, transform .35s ease;
  }

  .jsr-mobile-panel.is-open {
    max-height: 760px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow-y: auto;
  }

  .jsr-mobile-inner {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .jsr-mobile-inner a {
    text-decoration: none;
  }

  .jsr-mobile-drop {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .jsr-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    color: var(--jsr-charcoal);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.28s ease;
  }

  button.jsr-mobile-link {
    width: 100%;
    border: 0;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    text-align: left;
  }

  .jsr-mobile-link:hover {
    background: rgba(212, 227, 220, 0.55);
    color: var(--jsr-forest);
    transform: translateX(3px);
  }

  .jsr-mobile-link svg {
    width: 16px;
    height: 16px;
    opacity: .75;
    flex: 0 0 16px;
    transition: transform .28s ease;
  }

  .jsr-mobile-drop.is-sub-open > .jsr-mobile-link svg {
    transform: rotate(90deg);
  }

  .jsr-mobile-sub {
    display: grid;
    gap: 6px;
    padding: 0 0 0 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .38s cubic-bezier(.22,1,.36,1), opacity .28s ease, padding .28s ease;
  }

  .jsr-mobile-drop.is-sub-open .jsr-mobile-sub {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 0 4px 16px;
  }

  .jsr-mobile-sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 15px;
    color: var(--jsr-charcoal);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .03em;
    background: rgba(255, 255, 255, 0.28);
    transition: all 0.28s ease;
  }

  .jsr-mobile-sub a:hover {
    background: var(--jsr-forest);
    color: #ffffff;
    transform: translateX(3px);
  }

  .jsr-mobile-cta {
    margin-top: 6px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background: linear-gradient(135deg, #456f55 0%, #3C664C 50%, #345843 100%);
    border-color: rgba(60, 102, 76, 0.10);
    color: var(--jsr-cream);
  }

  .jsr-mobile-cta:hover {
    color: #ffffff !important;
  }

  .jsr-hero-container {
    padding: 128px 20px 56px;
    min-height: auto;
    text-align: center;
    justify-content: center;
  }

  .jsr-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .jsr-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .jsr-hero-actions {
    justify-content: center;
  }

  .jsr-hero-scroll {
    display: none;
  }

  .jsr-hero-bg img {
    object-position: center 18%;
    transform: scale(1.14);
  }

  .jsr-hero-bg::after {
    background: rgba(245, 240, 232, 0.85);
  }

  #jsrAboutFinal .jsrA-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jsr-method-section {
    padding: 96px 18px 72px;
  }

  .jsr-method-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .jsr-method-left {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .jsr-method-title,
  .jsr-method-subtitle,
  .jsr-method-copy,
  .jsr-method-points {
    max-width: 100%;
  }

  .jsr-method-divider {
    margin-left: auto;
    margin-right: auto;
    transform-origin: center;
  }

  .jsr-method-points li {
    justify-content: center;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
  }

  .jsr-method-mini {
    justify-content: center;
  }

  .jsr-method-stage {
    max-width: 760px;
    margin: 0 auto;
    height: auto;
  }

  .jsr-method-cards {
    max-width: 760px;
    margin: 0 auto;
    height: auto;
    align-content: normal;
  }

  .jsr-benefits-section {
    padding: 90px 16px 100px;
  }

  .jsr-benefits-head {
    margin-bottom: 40px;
  }

  .jsr-benefits-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jsr-benefits-visual {
    position: relative;
    top: auto;
    max-width: 560px;
    margin: 0 auto;
    display: block;
  }

  .jsr-benefits-main {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .jsr-benefits-right {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jsr-benefit-card {
    min-height: auto;
  }

  .jsr-testimonials-section {
    padding: 120px 18px 100px;
  }

  .jsr-testimonials-head {
    margin-bottom: 40px;
  }

  .jsr-tm-card {
    min-height: 390px;
    padding: 30px;
  }

  .jsr-finalcta-section {
    padding: 100px 18px;
  }

  .jsr-finalcta-card {
    padding: 56px 32px;
  }

  .jsr-contact-section {
    padding: 100px 18px;
  }

  .jsr-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .jsr-header {
    padding: 3px 14px;
  }

  .jsr-header.is-scrolled {
    padding: 3px 14px;
  }

  .jsr-brand img {
    height: 42px;
    max-width: 165px;
  }

  .jsr-mobile-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .jsr-mobile-toggle span:nth-child(1) { top: 15px; }
  .jsr-mobile-toggle span:nth-child(2) { top: 21px; }
  .jsr-mobile-toggle span:nth-child(3) { top: 27px; }

  .jsr-mobile-toggle.is-active span:nth-child(1),
  .jsr-mobile-toggle.is-active span:nth-child(3) {
    top: 21px;
  }

  .jsr-mobile-panel {
    width: calc(100% - 16px);
    border-radius: 20px;
  }

  .jsr-mobile-inner {
    padding: 12px;
  }

  .jsr-mobile-link {
    padding: 13px;
    font-size: 13px;
  }

  .jsr-hero-sec {
    min-height: auto;
  }

  .jsr-hero-container {
    padding: 116px 14px 42px;
  }

  .jsr-hero-bg img {
    object-position: center 14%;
    transform: scale(1.22);
  }

  .jsr-hero-title {
    font-size: clamp(44px, 14vw, 66px);
    margin-bottom: 14px;
  }

  .jsr-hero-text {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .jsr-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .jsr-hero-btn {
    width: 100%;
    min-height: 54px;
    padding: 15px 20px;
  }

  #jsrQuoteSameContent {
    padding: 80px 16px;
  }

  #jsrQuoteSameContent .jsrQ-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  #jsrQuoteSameContent .jsrQ-line {
    width: 60px;
    margin-top: 28px;
  }

  .jsr-method-section {
    padding: 80px 16px 60px;
  }

  .jsr-method-kicker {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .jsr-method-title {
    margin-top: 18px;
  }

  .jsr-method-divider {
    width: 90px;
    margin-top: 20px;
  }

  .jsr-method-subtitle {
    margin-top: 18px;
    font-size: 1.35rem;
    line-height: 1.45;
  }

  .jsr-method-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.85;
  }

  .jsr-method-points {
    margin-top: 22px;
    gap: 12px;
  }

  .jsr-method-points li {
    gap: 12px;
    font-size: .96rem;
    line-height: 1.7;
    justify-content: flex-start;
    max-width: none;
  }

  .jsr-method-mini {
    margin-top: 24px;
    gap: 8px 12px;
  }

  .jsr-method-mini span {
    font-size: 11px;
  }

  .jsr-method-cards {
    gap: 14px;
  }

  .jsr-method-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .jsr-method-card h3 {
    font-size: 1.7rem;
  }

  .jsr-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }

  .jsr-programmes-grid {
    grid-template-columns: 1fr;
  }

  .jsr-programmes-section {
    padding: 82px 16px;
  }

  .jsr-programmes-card {
    border-radius: 24px;
  }

  .jsr-programmes-content {
    padding: 18px 18px 20px;
  }

  .jsr-programmes-card h3 {
    font-size: 1.75rem;
  }

  .jsr-programmes-footer {
    margin-top: 30px;
  }

  .jsr-programmes-cta {
    width: 100%;
    max-width: 330px;
  }

  .jsr-benefits-title {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .jsr-benefits-desc {
    font-size: .98rem;
    line-height: 1.8;
  }

  .jsr-benefit-card {
    padding: 16px 16px 18px;
    border-radius: 24px;
  }

  .jsr-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 15px;
  }

  .jsr-testimonials-section {
    padding: 100px 16px 82px;
  }

  .jsr-tm-card {
    flex-basis: 100%;
    min-height: unset;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .jsr-tm-card::before {
    border-radius: 24px;
  }

  .jsr-testimonials-kicker {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .jsr-testimonials-title {
    margin-top: 20px;
  }

  .jsr-testimonials-sub {
    font-size: 1rem;
    line-height: 1.82;
  }

  .jsr-testimonials-divider {
    margin-top: 22px;
    width: 92px;
  }

  .jsr-tm-topline {
    margin-bottom: 18px;
  }

  .jsr-tm-quote-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .jsr-tm-quote-mark span {
    font-size: 2.3rem;
  }

  .jsr-tm-bottom {
    margin-top: 24px;
  }

  .jsr-tm-controls {
    margin-top: 22px;
  }

  .jsr-tm-nav {
    width: 46px;
    height: 46px;
  }

  .jsr-finalcta-section {
    padding: 82px 16px;
  }

  .jsr-finalcta-card {
    padding: 40px 18px;
    border-radius: 26px;
  }

  .jsr-finalcta-card::before {
    border-radius: 26px;
  }

  .jsr-finalcta-kicker {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .jsr-finalcta-title {
    margin-top: 20px;
  }

  .jsr-finalcta-divider {
    margin-top: 20px;
    width: 92px;
  }

  .jsr-finalcta-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.82;
  }

  .jsr-finalcta-actions {
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .jsr-finalcta-btn {
    width: 100%;
    max-width: 320px;
  }

  .jsr-finalcta-mini {
    margin-top: 20px;
    gap: 8px;
  }

  .jsr-finalcta-mini span {
    font-size: 10px;
  }

  .jsr-contact-section {
    padding: 82px 16px;
  }

  .jsr-contact-info-card,
  .jsr-contact-form-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .jsr-contact-info-card::before,
  .jsr-contact-form-card::before {
    border-radius: 24px;
  }

  .jsr-contact-kicker {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .jsr-contact-title {
    margin-top: 18px;
  }

  .jsr-contact-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.82;
  }

  .jsr-contact-divider {
    margin-top: 18px;
    width: 92px;
  }

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

  .jsr-contact-list li {
    padding: 13px;
    border-radius: 18px;
    align-items: flex-start;
  }

  .jsr-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
  }

  .jsr-contact-image {
    margin-top: 20px;
    border-radius: 22px;
  }

  .jsr-contact-image img {
    aspect-ratio: 4/3;
  }

  .jsr-contact-form-head h3 {
    font-size: 1.8rem;
  }

  .jsr-contact-form-head p {
    font-size: .96rem;
    line-height: 1.72;
  }

  .jsr-contact-forminator {
    padding: 16px;
    border-radius: 20px;
  }

  .jsr-contact-social {
    margin-top: 16px;
  }

  .jsr-contact-chip {
    width: 100%;
    justify-content: center;
  }

  .jsr-contact-blur.one {
    width: 130px;
    height: 130px;
    right: -18px;
    top: 8px;
  }

  .jsr-contact-blur.two {
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: 14px;
  }

  .jsr-footer-section {
    padding: 72px 16px 24px;
  }

  .jsr-footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 26px;
  }

  .jsr-footer-logo img {
    height: 54px;
    max-width: 210px;
  }

  .jsr-footer-heading {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .jsr-footer-brand p,
  .jsr-footer-links a,
  .jsr-footer-contact a,
  .jsr-footer-contact span {
    font-size: .95rem;
    line-height: 1.72;
  }

  .jsr-footer-mini {
    margin-top: 18px;
    gap: 8px;
  }

  .jsr-footer-mini span {
    font-size: 9px;
    padding: 8px 10px;
  }

  .jsr-footer-social {
    gap: 10px;
    margin-top: 16px;
  }

  .jsr-footer-social a {
    width: 38px;
    height: 38px;
  }

  .jsr-footer-bottom {
    padding-top: 20px;
    gap: 12px;
  }

  .jsr-footer-copy,
  .jsr-footer-legal a {
    font-size: .88rem;
  }

  .jsr-footer-orb.one {
    width: 130px;
    height: 130px;
    left: -16px;
    top: 8px;
  }

  .jsr-footer-orb.two {
    width: 110px;
    height: 110px;
    right: -18px;
    bottom: 12px;
  }

  .yoga-popup-content {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .yoga-popup-image {
    height: 180px;
    min-height: 180px;
  }

  .yoga-popup-form-container {
    padding: 25px;
  }

  .yoga-popup-form-container h2 {
    font-size: 22px;
  }
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes jsrHeaderDrop {
  0% { opacity: 0; transform: translateY(-22px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes jsrHeroReveal {
  0% { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes jsrScrollLine {
  0% { transform: translateX(-100%); opacity: .2; }
  40% { opacity: 1; }
  100% { transform: translateX(220%); opacity: .2; }
}

@keyframes jsrContactGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.03); }
}

@keyframes jsrFooterFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.03); }
}

@keyframes popupScaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Reduced Motion overrides */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .jsr-hero-content > *,
  .jsr-hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Language Switcher styling */
.jsr-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.jsr-lang-link {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 4px;
}

.jsr-lang-link:hover {
  color: rgba(245, 240, 232, 1);
}

.jsr-lang-link.active {
  color: rgba(245, 240, 232, 1);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}

.jsr-lang-divider {
  color: rgba(245, 240, 232, 0.3);
  font-weight: 300;
}

.jsr-mobile-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.jsr-mobile-lang a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 6px 12px;
}

.jsr-mobile-lang span.active {
  color: rgba(245, 240, 232, 1);
  font-weight: 600;
  padding: 6px 12px;
}

.jsr-mobile-lang .divider {
  color: rgba(245, 240, 232, 0.2);
  font-weight: 300;
}

/* Footer Newsletter Form Styling */
.jsr-footer-newsletter-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 14px;
}

.jsr-footer-newsletter-form {
  position: relative;
}

.jsr-footer-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jsr-footer-input-wrap:focus-within {
  border-color: rgba(245, 240, 232, 0.45);
  box-shadow: 0 0 0 3px rgba(245, 240, 232, 0.08);
}

.jsr-footer-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #f5f0e8;
  font-family: inherit;
  min-width: 0;
}

.jsr-footer-input-wrap input::placeholder {
  color: rgba(245, 240, 232, 0.45);
}

.jsr-footer-input-wrap button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1f4a36;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.jsr-footer-input-wrap button:hover {
  transform: scale(1.06);
  background: #2d644a;
}

.jsr-footer-input-wrap button svg {
  width: 16px;
  height: 16px;
}
