/* ========================================== */
/* LANDING PAGE - Main Story Sections CSS     */
/* ========================================== */
/* Contains: Story sections, leaf frames,     */
/* mission statements, benefit cards          */
/* ========================================== */

/* ========================================== */
/* 2. STORY SECTION - LEAF FRAME             */
/* ========================================== */

.story-section {
  padding: 10rem 1rem;
  background: rgba(240, 180, 170, 0.15);
}

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

.story-section__content-wrapper {
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  order: 2;
}

.story-section__image {
  order: 1;
}

.story-section__content {
  padding-right: 2rem;
}

.story-section__label {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rooted-green);
  margin-bottom: 0.5rem;
}

.story-section__heading {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-section__body {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  color: var(--rooted-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.story-section__body:last-of-type {
  margin-bottom: 2rem;
}

.story-section__image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: rotate(-45deg);
}

.story-section__image img {
  width: 138%;
  height: 138%;
  object-fit: cover;
  object-position: center;
  transform: rotate(45deg);
  transform-origin: center;
  filter: brightness(1.05) contrast(1.05);
  position: relative;
  z-index: 20;
}

/* Leaf-shaped frame using CSS */
.story-section__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 0;
  border: 3px solid var(--rooted-green);
  opacity: 0.15;
  pointer-events: none;
  z-index: 10;
}

/* Top corner accent - light grey leaf */
.story-section__image::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(200, 200, 200, 0.4) 0%, rgba(200, 200, 200, 0.15) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

/* Leaf accent SVGs */
.story-section__leaf-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 15;
}

.story-section__leaf-accent--top {
  top: -30px;
  right: -20px;
  transform: rotate(25deg);
}

.story-section__leaf-accent--bottom {
  bottom: -30px;
  left: -20px;
  transform: rotate(-45deg) scaleX(-1);
}

/* Tablet: Stack to 1-column */
@media (max-width: 1024px) {
  .story-section__container {
    gap: 2.5rem;
  }

  .story-section__image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 3rem 1rem;
  }

  .story-section__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .story-section__heading {
    font-size: 1.8rem;
  }

  .story-section__image {
    height: 300px;
    margin: 0 auto;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .story-section__heading {
    font-size: 1.5rem;
  }

  .story-section__body {
    font-size: 0.95rem;
  }

  .story-section__image {
    height: 250px;
    max-width: 250px;
  }
}

/* Story Section Layout Modifiers */
.story-section--image-right .story-section__container {
  grid-template-columns: 1fr 1.2fr;
}

.story-section--image-right .story-section__content-wrapper {
  order: 2;
}

.story-section--image-right .story-section__image {
  order: 1;
}

.story-section--image-left .story-section__container {
  grid-template-columns: 1.2fr 1fr;
}

.story-section--image-left .story-section__content-wrapper {
  order: 1;
}

.story-section--image-left .story-section__image {
  order: 2;
}

/* ========================================== */
/* 2a. WHY ROOTED VITALITY SECTION           */
/* ========================================== */

.why-rooted-vitality {
  padding: 5rem 1rem;
  background: rgba(144, 190, 160, 0.18);
}

.why-rooted-vitality__container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-rooted-vitality__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why-rooted-vitality__image {
  position: relative;
  width: 380px;
  height: 500px;
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: rotate(-45deg);
}

.why-rooted-vitality__image img {
  width: 160%;
  height: 160%;
  object-fit: cover;
  object-position: 35% 30%;
  transform: rotate(45deg);
  transform-origin: center;
}

.why-rooted-vitality__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-rooted-vitality__title {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  line-height: 1.3;
  margin: 0;
}

.why-rooted-vitality__subtitle {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  color: var(--rooted-dark);
  line-height: 1.8;
  opacity: 0.85;
  margin: 0;
}

.why-rooted-vitality__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 196, 124, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(212, 196, 124, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.why-card__title {
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin: 0 0 0.75rem 0;
}

.why-card__description {
  font-family: var(--font-lora);
  font-size: 0.95rem;
  color: var(--rooted-dark);
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .why-rooted-vitality__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-rooted-vitality__image {
    height: 380px;
  }

  .why-rooted-vitality__title {
    font-size: 1.8rem;
  }

  .why-rooted-vitality__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .why-rooted-vitality {
    padding: 3rem 1rem;
  }

  .why-rooted-vitality__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-rooted-vitality__image {
    height: 300px;
    order: -1;
  }

  .why-rooted-vitality__content {
    order: 0;
  }

  .why-rooted-vitality__title {
    font-size: 1.5rem;
  }

  .why-rooted-vitality__subtitle {
    font-size: 0.95rem;
  }

  .why-rooted-vitality__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-card {
    padding: 1.25rem;
  }

  .why-card__title {
    font-size: 1rem;
  }

  .why-card__description {
    font-size: 0.9rem;
  }
}

/* Responsive: Small Phone (430px) */
@media (max-width: 430px) {
  .why-rooted-vitality {
    padding: 2rem 1rem;
  }

  .why-rooted-vitality__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-rooted-vitality__image {
    height: 240px;
    order: -1;
  }

  .why-rooted-vitality__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .why-rooted-vitality__subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .why-rooted-vitality__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .why-card {
    padding: 0.9rem;
  }

  .why-card__title {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .why-card__description {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* Responsive: iPhone */
@media (max-width: 480px) {
  .why-rooted-vitality {
    padding: 2rem 1rem;
  }

  .why-rooted-vitality__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-rooted-vitality__image {
    height: 250px;
    order: -1;
  }

  .why-rooted-vitality__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .why-rooted-vitality__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .why-rooted-vitality__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .why-card {
    padding: 1rem;
  }

  .why-card__title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .why-card__description {
    font-size: 0.8rem;
  }
}

/* ========================================== */
/* 2b. CATEGORIES HORIZONTAL SCROLL          */
/* ========================================== */

/* ========================================== */
/* 3. NATURE & WELLNESS SECTION - LEFT ALIGN */
/* ========================================== */

.nature-wellness {
  padding: 5rem 1rem;
  background: var(--rooted-cream);
}


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

.nature-wellness__image {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--rooted-green);
}

.nature-wellness__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature-wellness__content {
  padding-left: 0;
}

.nature-wellness__label {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rooted-green);
  margin-bottom: 0.5rem;
}

.nature-wellness__heading {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.nature-wellness__body {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  color: var(--rooted-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.nature-wellness__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.nature-wellness__benefits li {
  font-family: var(--font-lora);
  font-size: 1rem;
  color: var(--rooted-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.nature-wellness__benefits li::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  background: var(--rooted-green);
  color: black;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nature-wellness {
    padding: 3rem 1rem;
  }

  .nature-wellness__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nature-wellness__image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .nature-wellness__heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .nature-wellness__image {
    width: 220px;
    height: 220px;
  }

  .nature-wellness__heading {
    font-size: 1.5rem;
  }

  .nature-wellness__body {
    font-size: 0.95rem;
  }
}

/* ========================================== */
/* 3b. TESTIMONIAL SECTION - CIRCLE FRAME    */
/* ========================================== */

.story-testimonial {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--rooted-light) 0%, var(--rooted-cream) 100%);
}

.story-testimonial__image {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--rooted-green);
}

.story-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-testimonial__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.story-testimonial__label {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rooted-gold);
  margin-bottom: 1.5rem;
}

.story-testimonial__quote {
  font-family: var(--font-lora);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rooted-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-testimonial__author {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rooted-green);
  margin-bottom: 2rem;
}

.story-testimonial__content .btn {
  margin-top: 1rem;
}

/* Tablet */
@media (max-width: 768px) {
  .story-testimonial {
    padding: 3rem 1rem;
  }

  .story-testimonial__image {
    width: 280px;
    height: 280px;
    margin-bottom: 2rem;
  }

  .story-testimonial__quote {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .story-testimonial__image {
    width: 220px;
    height: 220px;
  }

  .story-testimonial__quote {
    font-size: 1rem;
  }

  .story-testimonial__label {
    font-size: 0.75rem;
  }
}

/* ========================================== */
/* 4. FEATURED STORY - GRID FRAME            */
/* ========================================== */

.featured-story {
  padding: 8rem 1rem;
  background: rgba(92, 154, 114, 0.08);
}

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

.featured-story__wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
}

.featured-story__card {
  background: #fbf7ec;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: -1;
}

.featured-story__image-side {
  position: relative;
  order: 1;
}

.featured-story__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story__content {
  padding: 0;
}



.featured-story__label {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rooted-green);
  margin-bottom: 0.5rem;
}

.featured-story__title {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.featured-story__body {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  color: var(--rooted-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.featured-story__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.featured-story__benefits li {
  font-family: var(--font-lora);
  font-size: 1rem;
  color: var(--rooted-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.featured-story__benefits li::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  background: var(--rooted-green);
  color: black;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Grid-frame image container */
.featured-story__image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured Story Layout Modifiers */
.featured-story--image-right .featured-story__card {
  order: 2;
}

.featured-story--image-right .featured-story__image-side {
  order: 1;
}

.featured-story--image-left .featured-story__card {
  order: 1;
}

.featured-story--image-left .featured-story__image-side {
  order: -1;
}

/* Tablet */
@media (max-width: 1024px) {
  .featured-story__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-story__image {
    min-height: 350px;
  }

  .featured-story__card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .featured-story {
    padding: 3rem 1rem;
  }

  .featured-story__wrapper {
    grid-template-columns: 1fr;
  }

  .featured-story__image {
    min-height: 300px;
  }

  .featured-story__card {
    padding: 2rem;
  }

  .featured-story__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .featured-story__card {
    padding: 1.5rem;
  }

  .featured-story__title {
    font-size: 1.5rem;
  }

  .featured-story__body {
    font-size: 0.95rem;
  }

  .featured-story__benefits li {
    font-size: 0.9rem;
  }

  .featured-story__image {
    min-height: 250px;
  }
}

/* ========================================== */
/* UTILITY CLASSES                           */
/* ========================================== */

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background: var(--rooted-green);
  color: #fbf7ec;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ========================================== */
/* 5. SOCIAL PROOF SECTION                   */
/* ========================================== */

.social-proof {
  padding: 5rem 1rem;
  background: var(--rooted-cream);
}

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

.social-proof__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  text-align: center;
  margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  padding: 2rem;
  background: #fbf7ec;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--rooted-green);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rooted-dark);
  margin-bottom: 0.75rem;
}

.feature-card__description {
  font-family: var(--font-lora);
  font-size: 0.95rem;
  color: var(--rooted-dark);
  line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: var(--rooted-green);
  border-radius: 12px;
  text-align: center;
}

.stat {
  color: #fbf7ec;
}

.stat__number {
  font-family: var(--font-inter);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.stat__label {
  font-family: var(--font-lora);
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 768px) {
  .social-proof {
    padding: 3rem 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================== */
/* 6. HOW IT WORKS SECTION                   */
/* ========================================== */

.how-it-works {
  padding: 5rem 1rem;
  background: #fbf7ec;
}

.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
}

.process-step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--rooted-green);
}

.process-step__icon svg {
  width: 100%;
  height: 100%;
}

.process-step__title {
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rooted-dark);
  margin-bottom: 0.5rem;
}

.process-step__main {
  font-family: var(--font-lora);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rooted-green);
  margin-bottom: 0.75rem;
}

.process-step__description {
  font-family: var(--font-lora);
  font-size: 0.95rem;
  color: var(--rooted-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 3rem 1rem;
  }

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

/* ========================================== */
/* 7. CATEGORY GRID SECTION                  */
/* ========================================== */

.category-grid {
  padding: 5rem 1rem;
  background: var(--rooted-cream);
}

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

.category-grid__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.category-card {
  padding: 2rem;
  background: #fbf7ec;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  color: var(--rooted-green);
}

.category-card__icon svg {
  width: 100%;
  height: 100%;
}

.category-card__title {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rooted-dark);
  margin-bottom: 0.75rem;
}

.category-card__count {
  font-family: var(--font-lora);
  font-size: 0.9rem;
  color: var(--rooted-green);
  font-weight: 600;
}

@media (max-width: 768px) {
  .category-grid {
    padding: 3rem 1rem;
  }

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

/* ========================================== */
/* 8. PRACTITIONER CTA SECTION               */
/* ========================================== */

.practitioner-cta {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--rooted-green) 0%, var(--rooted-light) 100%);
  color: #fbf7ec;
}

.practitioner-cta__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.practitioner-cta__label {
  font-family: var(--font-inter);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.practitioner-cta__heading {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.practitioner-cta__body {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.practitioner-cta__button {
  background: #fbf7ec;
  color: var(--rooted-green);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.practitioner-cta__button:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .practitioner-cta {
    padding: 3rem 1rem;
  }

  .practitioner-cta__heading {
    font-size: 1.8rem;
  }
}

/* ========================================== */
/* 9. TRUST BUILDERS SECTION                 */
/* ========================================== */

.trust-builders {
  padding: 5rem 1rem;
  background: var(--rooted-cream);
}

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

.trust-builders__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.trust-badge {
  padding: 2rem;
  background: #fbf7ec;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-badge__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  color: var(--rooted-green);
}

.trust-badge__icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge__title {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rooted-dark);
  margin-bottom: 0.5rem;
}

.trust-badge__description {
  font-family: var(--font-lora);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trust-builders {
    padding: 3rem 1rem;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================== */
/* 10. FINAL CTA SECTION                     */
/* ========================================== */

.final-cta {
  padding: 4rem 1rem;
  background: #fbf7ec;
}

.final-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 1.5rem;
}

.final-cta__body {
  font-family: var(--font-lora);
  font-size: 1.05rem;
  color: var(--rooted-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 3rem 1rem;
  }

  .final-cta__heading {
    font-size: 1.6rem;
  }

  .final-cta__buttons {
    flex-direction: column;
  }
}

/* ========================================== */
/* PRACTITIONERS GALLERY SECTION */
/* ========================================== */

.practitioners-gallery {
  padding: 8rem 1rem;
  background: var(--rooted-cream);
}

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

.practitioners-gallery__heading {
  font-family: var(--font-inter);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rooted-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.practitioners-gallery__subheading {
  font-family: var(--font-lora);
  font-size: 1.1rem;
  color: var(--rooted-dark);
  text-align: center;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(92, 154, 114, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(92, 154, 114, 0.2);
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46, 43, 40, 0.95), rgba(46, 43, 40, 0.6) 60%, transparent);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
}

.gallery-card__title {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fbf7ec;
  margin: 0 0 0.5rem 0;
}

.gallery-card__specialty {
  font-family: var(--font-lora);
  font-size: 0.95rem;
  color: rgba(251, 247, 236, 0.9);
  margin: 0;
}

/* ========================================== */
/* WELLNESS CTA SECTION */
/* ========================================== */

.wellness-cta {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--rooted-green) 0%, rgba(92, 154, 114, 0.8) 100%);
}

.wellness-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.wellness-cta__heading {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fbf7ec;
  margin-bottom: 1rem;
}

.wellness-cta__body {
  font-family: var(--font-lora);
  font-size: 1.1rem;
  color: rgba(251, 247, 236, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.wellness-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .practitioners-gallery {
    padding: 4rem 1rem;
  }

  .practitioners-gallery__heading {
    font-size: 1.8rem;
  }

  .gallery-card {
    height: 320px;
  }

  .wellness-cta {
    padding: 4rem 1rem;
  }

  .wellness-cta__heading {
    font-size: 1.6rem;
  }

  .wellness-cta__actions {
    flex-direction: column;
  }
}

/* ========================================== */
/* CLIENT STORY SECTION                       */
/* ========================================== */

.client-story {
  padding: 6rem 1rem;
  background: #fbf7ec;
}

.client-story__container {
  max-width: 900px;
  margin: 0 auto;
}

.client-story__header {
  text-align: center;
  margin-bottom: 3rem;
}

.client-story__title {
  font-family: var(--font-inter);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 0.5rem;
}

.client-story__subtitle {
  font-family: var(--font-lora);
  font-size: 1.1rem;
  color: var(--rooted-dark);
  opacity: 0.75;
}

.client-story__card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fbf7ec;
  border-left: 4px solid var(--rooted-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(92, 154, 114, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding-left: 1.5rem;
}

.client-story__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  min-width: 100px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.client-story__card:hover .client-story__image img {
  transform: scale(1.05);
}

.client-story__content {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
}

.client-story__card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(92, 154, 114, 0.15);
}

.client-story__quote {
  font-family: var(--font-lora);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rooted-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.client-story__quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--rooted-green);
  opacity: 0.3;
  position: absolute;
  margin-left: -1rem;
  margin-top: -1rem;
}

.client-story__details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.client-story__meta {
  flex: 1;
}

.client-story__name {
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rooted-dark);
  margin-bottom: 0.25rem;
}

.client-story__description {
  font-family: var(--font-lora);
  font-size: 0.95rem;
  color: var(--rooted-dark);
  opacity: 0.75;
}

.client-story__cta {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rooted-green);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.client-story__card:hover .client-story__cta {
  color: var(--rooted-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .client-story {
    padding: 4rem 1rem;
  }

  .client-story__title {
    font-size: 1.8rem;
  }

  .client-story__card {
    padding: 2rem;
  }

  .client-story__image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    flex-shrink: 0;
  }

  .client-story__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-story__cta {
    display: inline-block;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .client-story {
    padding: 3rem 1rem;
  }

  .client-story__card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .client-story__image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    order: -1;
  }

  .client-story__quote {
    font-size: 1rem;
  }

  .client-story__details {
    width: 100%;
  }

  .client-story__cta {
    display: block;
  }
}




