/* ── Hero ─────────────────────────────────────── */
    .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--green-400);
    }

    .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    }

    .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(53, 64, 36, 0.08) 0%,
        rgba(44, 33, 16, 0.55) 60%,
        rgba(44, 33, 16, 0.82) 100%
    );
    }

    .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px) clamp(60px, 8vw, 100px);
    width: 100%;
    }

    .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-100);
    margin-bottom: 20px;
    }

    .hero-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green-100);
    }

    .hero h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(44px, 7vw, 86px);
        font-weight: 300;
        font-style: italic;
        color: #fff;
        line-height: 1.05;
        max-width: 100%;
        margin-bottom: 28px;
        text-align: center;
    }

    .hero-sub {
        font-family: "Jost", sans-serif;
        font-size: clamp(15px, 1.5vw, 17px);
        font-weight: 400;
        color: rgba(245, 235, 227, 0.82);
        max-width: 100%;
        line-height: 1.75;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    }

    .hero-scroll {
    position: absolute;
    bottom: clamp(24px, 4vw, 48px);
    right: clamp(24px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245, 235, 227, 0.5);
    font-family: "Jost", sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    }

    .hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        rgba(245, 235, 227, 0.5),
        transparent
    );
    animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.1);
    }
    }

    /* ── Yoga Description ───────────────────────────────── */
    .description-section {
    padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
    max-width: 1160px;
    margin: 0 auto -100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    }

    .section-label {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 16px;
    }

    .description-image-wrap {
    position: relative;
    }

    .description-photo {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 120px 120px 24px 24px;
    overflow: hidden;
    position: relative;
    }

    .description-photo img,
    .description-photo .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .description-text .section-label {
    color: var(--green-200);
    }

    .description-text h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    }

    .description-text h2 em {
    font-style: italic;
    color: var(--green-300);
    }

    .description-text h3 {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08;
    text-transform: uppercase;
    color: var(--green-300);
    text-decoration: none;
    margin-bottom: 18px;
    }

    .description-text p {
    margin-bottom: 18px;
    }

    .description-text p:last-of-type {
    margin-bottom: 25px;
    }

    .description-text-scroll {
    bottom: clamp(24px, 4vw, 48px);
    right: clamp(24px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--green-300);
    font-family: "Jost", sans-serif;
    font-weight: 400px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
    }

    .description-text-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        var(--green-300),
        transparent
    );
    animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.1);
    }
    }

  /* ── Booking Section ────────────────────────────────── */
  .booking-cards-section {
    padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 60px);
    background-color: white;
    margin-top: 40px;
  }

  .booking-cards-inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .booking-cards-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
  }

  .booking-cards-header h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 300;
    margin-bottom: 12px;
  }

  .booking-cards-header h2 em {
    font-style: italic;
    color: var(--green-300);
  }

  .booking-cards-header p {
    color: var(--brown-50);
    font-size: 15px;
    line-height: 1.75;
  }

  .booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* ── Service Card ─────────────────────────────────── */
  .service-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: 24px;
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(53, 64, 36, 0.05);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(53, 64, 36, 0.1);
    border-color: var(--cream-300);
  }

  .service-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--green-50);
    border: 1px solid var(--cream-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
    margin-bottom: 28px;
    flex-shrink: 0;
  }

  .service-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 400;
    color: var(--brown-100);
    margin-bottom: 14px;
  }

  .service-card h3 {
      font-family: "Jost", sans-serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.08;
      text-transform: uppercase;
      color: var(--green-300);
      text-decoration: none;
      text-align: center;
      margin: 10px;
  }

  .service-card p {
    font-size: 15px;
    color: var(--brown-50);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 25px;
  }

  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-300);
    text-decoration: none;
    transition: gap 0.2s ease;
  }

  .service-card-link::after {
    content: "→";
    font-size: 16px;
  }

  .service-card-link:hover {
    gap: 12px;
  }

  .booking-button {
      text-align: center;
      margin-top: 60px;
      justify-content: center;
      align-items: center;
  }

    /* ── Specialties ──────────────────────────────────── */
.specialties-section {
  background-color: var(--green-400);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
}

.specialties-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.specialties-text .eyebrow {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 16px;
}

.specialties-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-100);
  line-height: 1.1;
  margin-bottom: 20px;
}

.specialties-text p {
  color: rgba(229, 215, 196, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.specialties-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.specialties-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(229, 215, 196, 0.85);
  line-height: 1.45;
}

.specialties-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  flex-shrink: 0;
}

.specialties-photo-wrap {
  position: relative;
}

.specialties-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 80px 80px 24px 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.specialties-photo img,
.specialties-photo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ── Approach Band ────────────────────────────────── */
.approach-band {
  background-color: var(--cream-100);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 60px);
}

.approach-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.approach-band h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 16px;
}

.approach-band h2 em {
  font-style: italic;
  color: var(--green-300);
}

.approach-band > .approach-band-inner > p {
  max-width: 520px;
  margin: 0 auto 56px;
  color: var(--brown-50);
  font-size: 15px;
  line-height: 1.8;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.approach-pillar {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(53, 64, 36, 0.04);
}

.approach-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(53, 64, 36, 0.09);
}

.approach-pillar-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.approach-pillar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--brown-100);
  margin-bottom: 8px;
}

.approach-pillar p {
  font-size: 13px;
  color: var(--brown-50);
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .specialties-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .specialties-photo {
    max-width: 360px;
  }
  .approach-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .specialties-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .approach-pillars {
    grid-template-columns: 1fr;
  }
}
