/* ============================================
   WHOLENESS PSILO — Main Stylesheet
   Medical Center for Psychedelic Therapy
   ============================================ */

/* ---------- @font-face ---------- */
@font-face {
  font-family: 'Telugu MN';
  src: url('assets/fonts/TeluguMN-01.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telugu MN';
  src: url('assets/fonts/TeluguMN-Bold-02.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-sand: #F6F2E8;
  --color-sun: #BA9D4C;
  --color-brain: #CCB6A3;
  --color-sky: #B4C3BC;
  --color-sage: #566057;
  --color-juniper: #3C4D4A;

  /* Semantic aliases */
  --color-bg: var(--color-sand);
  --color-text: var(--color-juniper);
  --color-accent: var(--color-sun);

  /* Typography */
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Telugu MN', Georgia, serif;

  /* Layout */
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-juniper);
  background: var(--color-sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-juniper);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-sand);
  letter-spacing: 0.03em;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-sun);
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: var(--color-sun);
}

.header__nav-link:hover::after {
  width: 100%;
}

/* CTA Button in Header */
.header__cta {
  flex-shrink: 0;
  margin-left: 2rem;
  padding: calc(0.6rem + 3px) calc(1.5rem - 2px) calc(0.6rem - 7px);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-sand);
  background: var(--color-sun);
  border: 2px solid var(--color-sun);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.45s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header__cta:hover {
  transform: scale(0.96);
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-sand);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Video Background --- */
.hero__bg {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%; /* Pins the very top of the video to the top of the screen */
  display: block;
}

/* Soft floating bokeh / light particle overlay */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  animation: floatParticle linear infinite;
  opacity: 0;
}

.hero__particle:nth-child(1) {
  width: 6px; height: 6px;
  left: 15%; top: 60%;
  animation-duration: 18s;
  animation-delay: 0s;
}
.hero__particle:nth-child(2) {
  width: 10px; height: 10px;
  left: 40%; top: 75%;
  animation-duration: 22s;
  animation-delay: 3s;
}
.hero__particle:nth-child(3) {
  width: 4px; height: 4px;
  left: 65%; top: 50%;
  animation-duration: 16s;
  animation-delay: 6s;
}
.hero__particle:nth-child(4) {
  width: 8px; height: 8px;
  left: 80%; top: 80%;
  animation-duration: 20s;
  animation-delay: 2s;
}
.hero__particle:nth-child(5) {
  width: 5px; height: 5px;
  left: 25%; top: 40%;
  animation-duration: 24s;
  animation-delay: 8s;
}
.hero__particle:nth-child(6) {
  width: 7px; height: 7px;
  left: 55%; top: 65%;
  animation-duration: 19s;
  animation-delay: 5s;
}
.hero__particle:nth-child(7) {
  width: 3px; height: 3px;
  left: 90%; top: 30%;
  animation-duration: 15s;
  animation-delay: 1s;
}
.hero__particle:nth-child(8) {
  width: 9px; height: 9px;
  left: 10%; top: 20%;
  animation-duration: 26s;
  animation-delay: 7s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-120vh) translateX(30px);
    opacity: 0;
  }
}

/* --- Dark gradient overlay --- */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(60, 77, 74, 0.55) 0%,
      rgba(60, 77, 74, 0.25) 40%,
      rgba(60, 77, 74, 0.35) 70%,
      rgba(60, 77, 74, 0.70) 100%
    );
}

/* --- Hero Content --- */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-sand);
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.4s ease-out 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: bold;
  line-height: 1.7;
  color: var(--color-sand);
  max-width: 700px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.4s ease-out 1.2s forwards;
}

.hero__subtitle-small {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-sand);
  max-width: 650px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.4s ease-out 1.4s forwards;
  margin-top: -0.5rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.hero__cta-wrapper {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1.2s ease-out 1.6s forwards;
}

.hero__cta-wrapper--secondary {
  animation-delay: 1.8s; /* Stagger the fade in */
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: calc(1rem + 3px) calc(2.5rem - 2px) calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-sage);
  background: var(--color-sun);
  border: 2px solid var(--color-sun);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.45s ease;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.hero__cta--secondary {
  background: transparent;
  color: var(--color-sand);
  border: 2px solid var(--color-sand);
}

.hero__cta:hover {
  transform: scale(0.96);
}

.hero__cta-arrow {
  display: inline-block;
  transition: transform 0.45s ease;
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* --- Fade-in Keyframes --- */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs {
  background-color: var(--color-sand);
  padding: 80px 5%;
  color: var(--color-juniper);
}

.programs__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.programs__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
}

.programs__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 3.5rem;
}

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

.programs__card {
  background-color: var(--color-brain);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.programs__card-image {
  aspect-ratio: 3 / 1;
  overflow: hidden;
}

.programs__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programs__card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.programs__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.programs__card-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
}

.programs__card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-juniper);
  width: 100%;
}

.programs__card-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.programs__card-section {
  margin-bottom: 1.5rem;
  width: 100%;
}

.programs__card-section:last-child {
  margin-bottom: 0;
}

.programs__card-section h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.programs__card-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.programs__card-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.programs__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + 3px) calc(2.5rem - 2px) calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-sand);
  background: var(--color-juniper);
  border: 2px solid var(--color-juniper);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.programs__card-btn:hover {
  background: transparent;
  color: var(--color-juniper);
  transform: scale(0.96);
}

/* ==========================================
   EVIDENCE SPLIT SECTION
   ========================================== */
.evidence-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 400px;
}

/* For screens where half the width is larger than 400px, 
   we can optionally lock it to a square ratio if desired, 
   but letting it fill naturally based on content or min-height 
   is usually safest for responsive text. */
@media (min-width: 800px) {
  .evidence-split {
    aspect-ratio: 2 / 1;
  }
}

.evidence-split__content {
  background-color: var(--color-sky);
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-juniper);
}

.evidence-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
}

.evidence-split__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.evidence-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.evidence-split__list li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.evidence-split__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-sun);
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.evidence-split__list li strong {
  font-weight: bold;
}

.evidence-split__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.evidence-split__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================
   GROUP PSILOCYBIN THERAPY SECTION
   ========================================== */
.group-psilocybin-therapy {
  background-color: var(--color-sand);
  padding: 160px 5% 80px;
  color: var(--color-juniper);
}

.group-psilocybin-therapy__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.group-psilocybin-therapy__content {
  display: flex;
  flex-direction: column;
}

.group-psilocybin-therapy__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.group-psilocybin-therapy__subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.group-psilocybin-therapy__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.group-psilocybin-therapy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.group-psilocybin-therapy__list li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
}

.group-psilocybin-therapy__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-sun);
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.group-psilocybin-therapy__list li strong {
  font-weight: bold;
}

.group-psilocybin-therapy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: calc(1rem + 3px) calc(2.5rem - 2px) calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-sand);
  background: var(--color-juniper);
  border: 2px solid var(--color-juniper);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.group-psilocybin-therapy__btn:hover {
  background: transparent;
  color: var(--color-juniper);
  transform: scale(0.96);
}

.group-psilocybin-therapy__image {
  width: 100%;
}

.group-psilocybin-therapy__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(60, 77, 74, 0.15);
}

/* ==========================================
   PATH SECTION
   ========================================== */
.path {
  background-color: var(--color-sand);
  padding: 80px 2.5rem 160px;
  color: var(--color-juniper);
}

.path__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.path__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
}

.path__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.path__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 2px solid var(--color-juniper);
}

.path__step:last-child {
  border-right: none;
}

.path__step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-sun);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.path__step-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.path__step-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ==========================================
   HEALING SPLIT SECTION
   ========================================== */
.healing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 400px;
}

@media (min-width: 800px) {
  .healing-split {
    aspect-ratio: 2 / 1;
  }
}

.healing-split__content {
  background-color: var(--color-sand);
  padding: 3rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-juniper);
  overflow-y: auto;
}

.healing-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
}

.healing-split__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.healing-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
  width: 100%;
}

.healing-split__list li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  break-inside: avoid;
}

.healing-split__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-sun);
  font-size: 1.5rem;
  line-height: 1;
  top: -4px;
}

.healing-split__list li strong {
  font-weight: bold;
}

.healing-split__video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.healing-split__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================
   APPROACH SECTION
   ========================================== */
.approach {
  background-color: var(--color-sand);
  padding: 160px 2.5rem 40px;
  color: var(--color-juniper);
}

.approach__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.approach__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach__subheading {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.approach__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  border-right: 2px solid var(--color-juniper);
}

.approach__box:last-child {
  border-right: none;
}

.approach__icon {
  width: 85px;
  height: 85px;
  margin-bottom: 1.5rem;
}

.approach__caption {
  font-family: var(--font-body);
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.4;
}

/* ==========================================
   CARE SECTION
   ========================================== */
.care {
  background-color: var(--color-sand);
  padding: 80px 2.5rem;
  color: var(--color-juniper);
}

.care__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.care__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.care__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.care__list li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
}

.care__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-sun);
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.care__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.care__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ==========================================
   COMPREHENSIVE SECTION
   ========================================== */
.comprehensive {
  background-color: var(--color-sand);
  padding: 40px 5%;
  color: var(--color-juniper);
}

.comprehensive__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.comprehensive__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.comprehensive__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 4rem;
}

.comp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: clamp(-25px, -2vw, -15px);
  position: relative;
  z-index: 1;
}

.comp-item:first-child {
  margin-left: 0;
}

.comp-item:hover {
  z-index: 10;
}

.comp-circle {
  width: clamp(180px, 18vw, 290px);
  height: clamp(180px, 18vw, 290px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply;
}

.comp-item:hover .comp-circle {
  transform: translateY(-10px);
}

.comp-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comp-text {
  text-align: center;
  margin-top: 1.5rem;
  width: clamp(160px, 15vw, 260px);
  padding: 0 0.5rem;
}

.comp-text h4 {
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.comp-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team {
  background-color: var(--color-sand);
  padding: 40px 5%;
  color: var(--color-juniper);
}

.team__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
}

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

.team__heading a:hover {
  text-decoration: underline;
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team__member {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}

.team__member-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team__member-photo img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.team__member-info strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.team__member-info p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.8;
}

.team__member-bio {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.team__member-bio p {
  margin-bottom: 1.25rem;
}

.team__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + 3px) calc(2.5rem - 2px) calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-juniper);
  background: transparent;
  border: 2px solid var(--color-juniper);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  margin-top: 1rem;
}

.team__btn:hover {
  background: var(--color-juniper);
  color: var(--color-sand);
  transform: scale(0.96);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  background-color: var(--color-sand);
  padding: 40px 5% 80px;
}

.testimonials__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Card Styling */
.testi-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(180, 195, 188, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Special styling for the heading slot */
.testi-item--heading {
  background-color: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
}

.testi-item--heading h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--color-juniper);
  line-height: 1.2;
}

/* Header inside card (avatar + name + stars) */
.testi-item__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-item__avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-item__avatar-placeholder {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--color-sky);
}

.testi-item__meta strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-juniper);
  display: block;
  margin-bottom: 0.25rem;
}

.testi-item__stars {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.testi-item__content {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--color-juniper);
  opacity: 0.9;
}

/* ==========================================
   RETREATS SECTION
   ========================================== */
.retreats {
  background-color: var(--color-sand);
  padding: 80px 5%;
  color: var(--color-juniper);
}

.retreats__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.retreats__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.retreats__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.retreats__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

.retreats__teaser {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 77, 74, 0.15);
}

.retreats__teaser-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.retreats__teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retreats__teaser-body {
  background-color: var(--color-sky);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.retreats__teaser-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.retreats__teaser-dates {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.retreats__teaser-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.retreats__teaser-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-juniper);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.retreats__teaser-btn::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.retreats__teaser-btn:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

/* ==========================================
   PARALLAX CTA SECTION
   ========================================== */
.parallax-cta {
  position: relative;
  background-image: url('assets/images/succulents.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5%;
}

.parallax-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(60, 77, 74, 0.6) 0%,
    rgba(60, 77, 74, 0.4) 50%,
    rgba(60, 77, 74, 0.65) 100%
  );
}

.parallax-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.parallax-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-sand);
}

.parallax-cta__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--color-sand);
  max-width: 700px;
}

.parallax-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + 3px) calc(2.5rem - 2px) calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-sand);
  background: transparent;
  border: 2px solid var(--color-sand);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.45s ease, background-color 0.3s ease, color 0.3s ease;
  min-width: 280px;
}

.parallax-cta__btn:hover {
  background: var(--color-sand);
  color: var(--color-juniper);
  transform: scale(0.96);
}


/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--color-juniper) 0%,
    var(--color-sage) 20%,
    var(--color-sky) 40%,
    var(--color-brain) 60%,
    var(--color-sun) 80%,
    var(--color-sand) 100%
  );
  padding: 3.5rem 2.5rem 2.5rem;
  color: var(--color-juniper);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Footer Logo Column */
.footer__logo img {
  height: 60px;
  width: auto;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social-link {
  color: var(--color-sand);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
}

.footer__social-link:hover {
  transform: scale(1.15);
  opacity: 0.7;
}

/* Footer Disclaimer Column */
.footer__disclaimer {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-juniper);
  opacity: 0.9;
}

.footer__disclaimer strong {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Footer Contact Column */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-juniper);
}

.footer__contact-item a {
  color: var(--color-juniper);
  transition: opacity 0.3s ease;
}

.footer__contact-item a:hover {
  opacity: 0.7;
}

.footer__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: -3px;
}

/* Footer bottom bar */
.footer__bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(60, 77, 74, 0.2);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--color-juniper);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1280px) {
  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Retreats */
  .retreats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header__nav-list {
    gap: 1.25rem;
  }

  .header__nav-link {
    font-size: 0.8rem;
  }

  .header__cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .path__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
  }
  
  .approach__box:nth-child(2) {
    border-right: none;
  }
  
  .care__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 1.5rem;
  }

  /* Mobile navigation */
  .header__menu-toggle {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-juniper);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .header__nav-link {
    font-size: 1rem;
  }

  .header__cta {
    margin-left: 0;
    margin-top: 2rem;
  }

  /* Mobile menu toggle animation */
  .header__menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero__content {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .hero__cta {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
  }

  /* Programs */
  .programs__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .programs__card-body {
    padding: 2rem;
  }

  /* Evidence & Healing Splits */
  .evidence-split,
  .healing-split {
    grid-template-columns: 1fr;
  }
  
  .evidence-split__image,
  .healing-split__video {
    order: -1;
    aspect-ratio: 1 / 1;
  }
  
  .healing-split__list {
    columns: 1;
  }

  /* Path */
  .path__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Group Psilocybin Therapy */
  .group-psilocybin-therapy__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Approach */
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  
  .approach__box {
    border-right: none;
    border-bottom: 2px solid var(--color-juniper);
    padding-bottom: 3rem;
  }
  
  .approach__box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Comprehensive */
  .comprehensive__items {
    flex-direction: column;
  }
  
  .comp-item {
    margin-left: 0;
    margin-top: -25px;
  }
  
  .comp-item:first-child {
    margin-top: 0;
  }
  
  .comp-text {
    width: auto;
    max-width: 320px;
    margin-bottom: 2rem;
  }
  
  /* Team */
  .team__member {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }

  /* Retreats */
  .retreats__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .hero__content {
    gap: 1rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }
  
  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }

  /* Retreats */
  .retreats__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   AGE VERIFICATION GATE
   ========================================== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.age-gate.is-visible {
  display: flex;
  animation: ageGateFadeIn 0.4s ease forwards;
}

.age-gate.is-closing {
  animation: ageGateFadeOut 0.5s ease forwards;
  pointer-events: none;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 77, 74, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate__dialog {
  position: relative;
  z-index: 1;
  background: var(--color-sand);
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(186, 157, 76, 0.15);
  animation: ageDialogSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.age-gate__logo {
  margin-bottom: 1.5rem;
}

.age-gate__logo img {
  height: 50px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(28%) sepia(8%) saturate(1165%) hue-rotate(117deg) brightness(95%) contrast(88%);
}

.age-gate__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--color-juniper);
  margin-bottom: 0.5rem;
}

.age-gate__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-sage);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.age-gate__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.age-gate__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  background: rgba(180, 195, 188, 0.25);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.age-gate__option:hover {
  background: rgba(180, 195, 188, 0.4);
}

.age-gate__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.age-gate__radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-sage);
  position: relative;
  transition: border-color 0.25s ease;
}

.age-gate__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sun);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.age-gate__option input:checked ~ .age-gate__radio {
  border-color: var(--color-sun);
}

.age-gate__option input:checked ~ .age-gate__radio::after {
  transform: translate(-50%, -50%) scale(1);
}

.age-gate__option:has(input:checked) {
  border-color: var(--color-sun);
  background: rgba(186, 157, 76, 0.08);
}

.age-gate__label-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-juniper);
  font-weight: bold;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: calc(1rem + 3px) 2rem calc(1rem - 7px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sand);
  background: var(--color-juniper);
  border: 2px solid var(--color-juniper);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.age-gate__btn:hover:not(:disabled) {
  background: transparent;
  color: var(--color-juniper);
  transform: scale(0.96);
}

.age-gate__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.age-gate__denied {
  display: none;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #a03030;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.75rem;
  background: rgba(160, 48, 48, 0.08);
  border-radius: 8px;
}

.age-gate__denied.is-visible {
  display: block;
  animation: ageShake 0.4s ease;
}

/* Age gate keyframes */
@keyframes ageGateFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ageGateFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes ageDialogSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ageShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* Age gate responsive */
@media (max-width: 480px) {
  .age-gate__dialog {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 16px;
  }

  .age-gate__title {
    font-size: 1.3rem;
  }
}
