:root {
  --cream: #fdfdf1;
  --light: #f5f5f5;
  --sage: #d6e5be;
  --teal: #10a690;
  --leaf: #65df8e;
  --lime: #c0f862;
  --deep: #094a3d;
  --ink: #272727;
  --muted: #66736f;
  --line: rgba(39, 39, 39, 0.14);
  --brand-text-gradient: linear-gradient(90deg, var(--teal) 0%, var(--leaf) 62%, var(--lime) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2 {
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
  line-height: 1;
}

h3 {
  font-size: 1.16rem;
  font-weight: 700;
}

.contact-panel h2,
.site-footer h3 {
  color: var(--teal);
  background: var(--brand-text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  line-height: 1.75;
}

@keyframes brandGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes heroRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes headerDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  }

  50% {
    box-shadow: 0 18px 36px rgba(16, 166, 144, 0.36);
  }
}

@keyframes pricingPopIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.96);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.012);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pricingCardGlow {
  0%,
  100% {
    border-color: rgba(9, 74, 61, 0.14);
    box-shadow: 0 -12px 34px rgba(39, 39, 39, 0.1);
  }

  50% {
    border-color: rgba(16, 166, 144, 0.45);
    box-shadow:
      0 -16px 42px rgba(39, 39, 39, 0.12),
      0 0 0 4px rgba(101, 223, 142, 0.12);
  }
}

@keyframes priceChipGlow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 8px 20px rgba(16, 166, 144, 0.22);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 10px 26px rgba(101, 223, 142, 0.38);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-from-left {
  transform: translate3d(-30px, 0, 0);
}

.reveal-on-scroll.reveal-from-right {
  transform: translate3d(30px, 0, 0);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerDrop 0.7s ease 0.08s both;
  }

  .hero-content .eyebrow {
    animation: heroRise 0.75s ease 0.18s both;
  }

  .hero-content h1 {
    animation: heroRise 0.85s ease 0.32s both;
  }

  .hero-copy {
    animation: heroRise 0.85s ease 0.46s both;
  }

  .hero-section .cta-row {
    animation: heroRise 0.85s ease 0.6s both;
  }
}

.brand-nav {
  max-width: 1272px;
  margin: 0 auto;
  min-height: 83px;
  padding: 0 28px;
  background: #fff;
  border: 1px solid #e1e8dc;
  border-radius: 6px;
}

.brand-logo {
  width: 142px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  border-radius: 16px 0 16px 0;
  min-height: 46px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.btn-brand {
  --bs-btn-border-width: 0;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-border-color: transparent;
  background: linear-gradient(105deg, var(--teal), var(--leaf), var(--lime), var(--leaf), var(--teal));
  background-size: 240% 100%;
  background-position: 0% 50%;
  color: var(--deep);
  border: 0;
  background-clip: border-box;
  overflow: hidden;
  transition:
    background-position 0.55s ease,
    filter 0.3s ease,
    transform 0.25s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  animation: brandGradientFlow 1.8s ease-in-out infinite alternate;
  color: var(--deep);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.btn-outline-brand {
  color: var(--deep);
  border-color: var(--deep);
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.btn-light-brand {
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep);
  border: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-light-brand:hover,
.btn-light-brand:focus {
  background: #fff;
  color: var(--deep);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.text-link {
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.text-link:hover,
.text-link:focus {
  color: var(--teal);
  border-color: transparent;
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 86px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62)),
    url("https://api.shatamjeeva.life/uploads/A_Holistic_Path_to_Health_Banner_332f4f0c64.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.hero-location-highlight {
  display: inline-block;
  color: var(--lime);
  text-shadow:
    0 0 20px rgba(192, 248, 98, 0.52),
    0 3px 18px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: #46615c;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-row,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.trust-strip {
  padding: 24px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  height: 100%;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid #e9eadc;
  border-radius: 8px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.trust-item strong {
  display: block;
  color: var(--deep);
  font-size: 1rem;
  font-weight: 800;
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-pad {
  padding: clamp(70px, 8vw, 116px) 0;
}

.muted-section {
  background: var(--cream);
}

.intro-section p {
  color: #3e4644;
}

.image-stack {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.image-stack img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.65s ease;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: #53605c;
}

.treatment-card,
.reason-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
}

.treatment-card-image {
  width: 100%;
  height: 148px;
  display: block;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--sage);
  transition: transform 0.55s ease;
}

.treatment-card-image-contain {
  object-fit: contain;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(214, 229, 190, 0.7), rgba(253, 253, 241, 0.95));
}

.treatment-card span {
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.treatment-card h3 {
  margin-top: 22px;
  font-size: 1.4rem;
}

.treatment-card p {
  color: #53605c;
}

.treatment-card a {
  margin-top: auto;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.highlight-card {
  background: var(--sage);
}

.sticky-copy {
  position: sticky;
  top: 32px;
}

.process-visuals {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: end;
}

.process-visuals img {
  width: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.process-visuals img:nth-child(2) {
  min-height: 190px;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.process-item b {
  color: var(--deep);
}

.process-item p {
  margin: 0;
  color: #53605c;
}

.section-cta {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.section-cta span {
  font-weight: 700;
}

.forest-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 92px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 74, 61, 0.82), rgba(9, 74, 61, 0.2)),
    url("https://shatamjeeva.life/images/contact/contact_new.png") center/cover no-repeat;
}

.forest-copy {
  max-width: 700px;
}

.forest-copy p:not(.eyebrow) {
  font-size: 1.05rem;
}

.reason-card {
  min-height: 210px;
}

.reason-card p {
  color: #53605c;
}

.center-cta {
  margin-top: 34px;
  text-align: center;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .trust-item:hover,
  .treatment-card:hover,
  .reason-card:hover,
  .process-item:hover,
  .section-cta:hover,
  .custom-accordion .accordion-item:hover {
    border-color: rgba(16, 166, 144, 0.32);
    box-shadow: 0 18px 42px rgba(39, 39, 39, 0.08);
    transform: translateY(-5px);
  }

  .image-stack:hover {
    border-color: rgba(16, 166, 144, 0.28);
    box-shadow: 0 22px 52px rgba(39, 39, 39, 0.1);
    transform: translateY(-4px);
  }

  .image-stack:hover img,
  .treatment-card:hover .treatment-card-image {
    transform: scale(1.04);
  }

  .process-visuals img:hover {
    box-shadow: 0 18px 42px rgba(39, 39, 39, 0.12);
    transform: translateY(-4px) scale(1.015);
  }
}

.testimonial-section {
  background:
    radial-gradient(circle at top right, rgba(214, 229, 190, 0.42), transparent 28%),
    #fff;
}

.testimonial-tabs {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 8px;
  display: flex;
  gap: 8px;
  border: 2px solid rgba(39, 39, 39, 0.08);
  border-radius: 999px;
  overflow-x: auto;
  background: #fff;
}

.testimonial-tabs .nav-link {
  min-width: 170px;
  min-height: 48px;
  padding: 10px 24px;
  color: rgba(39, 39, 39, 0.58);
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.testimonial-tabs .nav-link.active {
  --bs-nav-tabs-link-active-border-color: transparent;
  color: var(--deep);
  background: linear-gradient(105deg, var(--teal), var(--leaf), var(--lime), var(--leaf), var(--teal));
  background-size: 240% 100%;
  background-position: 0% 50%;
  border: 0;
  overflow: hidden;
  transition:
    background-position 0.55s ease,
    filter 0.3s ease;
}

.testimonial-tabs .nav-link.active:hover,
.testimonial-tabs .nav-link.active:focus {
  animation: brandGradientFlow 1.8s ease-in-out infinite alternate;
  filter: saturate(1.08);
}

.testimonial-carousel {
  max-width: 1040px;
  margin: 0 auto;
}

.video-testimonial-carousel {
  max-width: 1260px;
}

.video-testimonial-carousel .carousel-inner {
  padding: 2px 12px 10px;
}

.video-testimonial-carousel .row {
  margin-right: 0;
  margin-left: 0;
}

.story-peek-slider {
  width: min(100vw, 1460px);
  margin: 0 0 0 50%;
  transform: translateX(-50%);
}

.story-peek-shell {
  overflow: hidden;
  padding: 18px 0 6px;
}

.story-peek-stage {
  position: relative;
  min-height: 426px;
}

.story-peek-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.94);
  transition:
    opacity 0.45s ease,
    transform 0.55s ease;
}

.story-peek-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.story-peek-slide.is-prev,
.story-peek-slide.is-next {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.story-peek-slide.is-prev {
  transform: translateX(calc(-50% - 20px)) scale(0.98);
}

.story-peek-slide.is-next {
  transform: translateX(calc(50% + 20px)) scale(0.98);
}

.story-peek-card {
  width: min(1048px, calc(100vw - 260px));
  min-height: 358px;
  display: grid;
  grid-template-columns: minmax(230px, 292px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 2.5vw, 28px);
  color: var(--ink);
  background: #f8f8f5;
  border: 1px solid rgba(39, 39, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(39, 39, 39, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.story-person-card {
  position: relative;
  min-height: 292px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 22px;
  isolation: isolate;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: 0 14px 34px rgba(39, 39, 39, 0.18);
}

.story-person-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.story-person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 74, 61, 0) 42%, rgba(9, 74, 61, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.story-person-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 0.98;
}

.story-person-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.story-content {
  align-self: center;
  padding-right: clamp(0px, 1vw, 18px);
}

.quote-mark {
  display: block;
  height: 56px;
  color: rgba(101, 223, 142, 0.35);
  font-family: "Crimson Text", Georgia, serif;
  font-size: 8.4rem;
  font-weight: 700;
  line-height: 0.68;
}

.story-content p {
  margin: 0;
  color: #333b39;
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  font-weight: 700;
  line-height: 1.5;
}

.story-peek-slide:not(.is-active) .story-peek-card {
  width: 260px;
  min-height: 306px;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.story-peek-slide:not(.is-active) .story-person-card {
  min-height: 306px;
}

.story-peek-slide:not(.is-active) .story-content {
  display: none;
}

.story-peek-slide:not(.is-active):hover .story-person-card img,
.story-peek-slide:not(.is-active):focus-within .story-person-card img {
  transform: scale(1.05);
}

.story-slide-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-slide-card::before {
  content: "\201C";
  position: absolute;
  right: 34px;
  top: 10px;
  color: rgba(9, 74, 61, 0.08);
  font-family: "Crimson Text", Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.story-source {
  display: inline-flex;
  margin-bottom: 18px;
  color: #46615c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-slide-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.guest-meta {
  margin: 4px 0 22px;
  color: var(--deep);
  font-weight: 700;
}

.story-slide-card p:not(.guest-meta),
.story-slide-card li {
  color: #45504d;
  font-size: 0.98rem;
  line-height: 1.8;
}

.story-slide-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.slider-controls {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.slider-arrow:hover,
.slider-arrow:focus {
  color: var(--deep);
  border-color: var(--deep);
  box-shadow: 0 10px 24px rgba(9, 74, 61, 0.14);
  transform: translateY(-2px);
}

.slider-count {
  min-width: 150px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.video-card {
  width: 100%;
  display: block;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.video-card:hover,
.video-card:focus {
  color: var(--ink);
  transform: translateY(-4px);
}

.video-card:hover .video-thumb img,
.video-card:focus .video-thumb img {
  transform: scale(1.04);
}

.video-card:focus-visible .video-thumb {
  outline: 3px solid rgba(16, 166, 144, 0.52);
  outline-offset: 4px;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: var(--sage);
  box-shadow: 0 18px 42px rgba(39, 39, 39, 0.12);
  clip-path: inset(0 round 18px);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.45s ease;
  transform: translateZ(0);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(90deg, var(--teal), var(--leaf), var(--lime));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  color: transparent;
  font-size: 0;
  transition: transform 0.28s ease;
  animation: softPulse 2.4s ease-in-out infinite;
}

.video-card:hover .video-play,
.video-card:focus .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--deep);
}

.video-testimonial-modal .modal-dialog {
  max-width: min(1040px, calc(100vw - 32px));
}

.video-testimonial-modal .modal-content {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.video-testimonial-modal .modal-body {
  padding: 0;
}

.video-testimonial-modal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-local-fallback {
  min-height: min(58vw, 560px);
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  place-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(101, 223, 142, 0.14), transparent 34%),
    #252525;
}

.video-local-fallback[hidden] {
  display: none;
}

.video-local-fallback strong {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.video-local-fallback span {
  max-width: 520px;
  display: block;
  line-height: 1.65;
}

.video-fallback-link {
  display: block;
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.video-fallback-link:hover,
.video-fallback-link:focus {
  color: #fff;
  background: #181818;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.92);
  opacity: 0.92;
}

.video-modal-close:hover,
.video-modal-close:focus {
  opacity: 1;
}

.faq-section {
  background: var(--light);
}

.custom-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.custom-accordion .accordion-button {
  color: var(--ink);
  font-weight: 800;
  box-shadow: none;
  padding: 22px 24px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--deep);
  background: var(--sage);
}

.custom-accordion .accordion-body {
  color: #53605c;
  line-height: 1.75;
}

.contact-section {
  padding: 72px 0;
  background: #fff;
}

.contact-panel {
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  color: #fff;
  background: #272727;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.contact-panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

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

.site-footer {
  padding: 58px 0 100px;
  background: #272727;
  color: rgba(255, 255, 255, 0.68);
}

.has-pricing-sticky .site-footer {
  padding-bottom: 145px;
}

.footer-logo {
  width: 188px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: #fff;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0 0 11px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.84rem;
}

.pricing-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 39;
  padding: 12px clamp(18px, 4vw, 42px);
  color: var(--deep);
  pointer-events: none;
}

.pricing-sticky-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(9, 74, 61, 0.14);
  border-radius: 8px;
  box-shadow: 0 -12px 34px rgba(39, 39, 39, 0.1);
  pointer-events: auto;
  transform-origin: center bottom;
}

.pricing-sticky-copy {
  font-size: clamp(0.96rem, 1.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.pricing-sticky-copy strong {
  padding: 2px 8px;
  display: inline-block;
  color: var(--deep);
  font-size: 1.25em;
  font-weight: 800;
  background: var(--brand-text-gradient);
  background-size: 220% 100%;
  background-position: 0% 50%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(16, 166, 144, 0.22);
  white-space: nowrap;
}

.pricing-sticky-copy small {
  display: block;
  margin-top: 2px;
  color: #53605c;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
}

.pricing-sticky-action {
  min-height: 44px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(105deg, var(--teal), var(--leaf), var(--lime), var(--leaf), var(--teal));
  background-size: 240% 100%;
  background-position: 0% 50%;
  border-radius: 16px 0 16px 0;
  transition:
    background-position 0.55s ease,
    filter 0.3s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pricing-sticky-action:hover,
.pricing-sticky-action:focus {
  color: var(--deep);
  animation: brandGradientFlow 1.8s ease-in-out infinite alternate;
  filter: saturate(1.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference) {
  .pricing-sticky-inner {
    animation:
      pricingPopIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both,
      pricingCardGlow 3.8s ease-in-out 1.3s infinite;
  }

  .pricing-sticky-copy strong {
    animation: priceChipGlow 2.8s ease-in-out 1.15s infinite;
  }
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px;
  gap: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-cta-bar {
    animation: heroRise 0.45s ease 0.35s both;
  }
}

.mobile-cta-bar a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px 0 14px 0;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(105deg, var(--teal), var(--leaf), var(--lime), var(--leaf), var(--teal));
  background-size: 240% 100%;
  background-position: 0% 50%;
  border: 0;
  overflow: hidden;
  transition:
    background-position 0.55s ease,
    filter 0.3s ease;
}

.mobile-cta-bar a:hover,
.mobile-cta-bar a:focus {
  animation: brandGradientFlow 1.8s ease-in-out infinite alternate;
  filter: saturate(1.08);
}

.mobile-cta-bar a:first-child {
  background: #fff;
  border: 2px solid var(--deep);
}

.policy-page {
  background: var(--cream);
}

.policy-page .site-header {
  position: static;
  padding-top: 28px;
}

.policy-main {
  padding: 58px 0 90px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 68px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-card h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.policy-card h2 {
  margin-top: 34px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.policy-card p {
  color: #53605c;
}

.policy-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .brand-nav {
    min-height: 68px;
  }

  .brand-logo {
    width: 104px;
  }

  .hero-section {
    min-height: 690px;
    padding-top: 150px;
  }

  .sticky-copy {
    position: static;
  }

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

  .contact-actions {
    justify-items: start;
  }

  .process-visuals {
    max-width: 620px;
  }

  .story-peek-slider {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .story-peek-stage {
    min-height: 658px;
  }

  .story-peek-card {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
  }

  .story-person-card {
    min-height: 292px;
  }

  .story-content {
    padding-right: 0;
  }

  .story-peek-slide.is-prev {
    transform: translateX(calc(-50% - 44px)) scale(0.92);
  }

  .story-peek-slide.is-next {
    transform: translateX(calc(50% + 44px)) scale(0.92);
  }
}

@media (max-width: 767.98px) {
  .site-header {
    top: 20px;
    padding: 0 16px;
  }

  .brand-nav {
    padding: 0 16px;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn {
    min-height: 42px;
    padding: 11px 17px;
  }

  .hero-section {
    min-height: 640px;
    padding-bottom: 52px;
  }

  .cta-row,
  .cta-inline,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .forest-band {
    min-height: 520px;
  }

  .treatment-card {
    min-height: 0;
  }

  .treatment-card-image {
    height: 132px;
  }

  .process-visuals {
    grid-template-columns: 1fr;
  }

  .process-visuals img,
  .process-visuals img:nth-child(2) {
    min-height: 190px;
  }

  .testimonial-tabs {
    width: 100%;
    border-radius: 24px;
  }

  .testimonial-tabs .nav-link {
    min-width: 0;
    flex: 1 0 160px;
  }

  .story-peek-stage {
    min-height: 690px;
  }

  .story-peek-slide.is-prev,
  .story-peek-slide.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .story-peek-card {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  .story-person-card {
    min-height: 260px;
  }

  .quote-mark {
    height: 42px;
    font-size: 6.4rem;
  }

  .story-content p {
    font-size: 0.88rem;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .has-pricing-sticky .site-footer {
    padding-bottom: 218px;
  }

  .pricing-sticky {
    bottom: 68px;
    padding: 9px 12px;
  }

  .pricing-sticky-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-sticky-copy {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .pricing-sticky-copy small {
    font-size: 0.62rem;
  }

  .pricing-sticky-action {
    min-height: 36px;
    padding: 8px 18px;
    justify-self: center;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.reveal-from-left,
  .reveal-on-scroll.reveal-from-right {
    opacity: 1;
    transform: none;
  }

  .btn-brand:hover,
  .btn-brand:focus,
  .btn-light-brand:hover,
  .btn-light-brand:focus,
  .testimonial-tabs .nav-link.active:hover,
  .testimonial-tabs .nav-link.active:focus,
  .mobile-cta-bar a:hover,
  .mobile-cta-bar a:focus {
    animation: none;
    background-position: 100% 50%;
    transform: none;
  }
}
