/* HERO CSS START */
#hero-1 {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-1 .container {
  z-index: 1;
  width: 85%;
  padding-top: 55px;
}

#hero-1 h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

/* Image wrapper */
.hero-1__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Image itself */
.hero-1__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay (replaces your CSS bg gradient) */
.hero-1__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 244, 1) 0%,
    rgba(250, 247, 244, 1) 15%,
    rgba(250, 247, 244, 0.7) 55%,
    rgba(250, 247, 244, 0.3) 70%,
    rgba(250, 247, 244, 0.1) 100%
  );
}

/* Content */
.hero-1__content {
  max-width: 35rem;
  display: grid;
  gap: var(--spaceSmmd);
}

/* Accent line */
.hero-1__heading-accent {
  display: block;
  margin-top: 0.4rem;
  font-family: "Cormorant Garamond Italic", var(--headerFont);
  color: var(--mainBrandColour);
}

/* Text */
.hero-1__text {
  max-width: 32rem;
  font-size: 1rem;
}
/* HERO CSS END */

/* SUPPORT BAR CSS START */
#support-bar-1 {
  background-color: var(--bgColour2);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.support-bar-1__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spaceMd);
  text-align: center;
}

.support-bar-1__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spaceXs);
  font-size: 0.9rem;
}

.support-bar-1__icon {
  width: 32px;
  height: 32px;
  fill: var(--mainBrandColour);
}

/* Responsive */
@media (max-width: 768px) {
  .support-bar-1__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spaceSm);
  }

  .hero-1__overlay {
    background: linear-gradient(
      90deg,
      rgba(250, 247, 244, 1) 0%,
      rgba(250, 247, 244, 1) 25%,
      rgba(250, 247, 244, 0.7) 55%,
      rgba(250, 247, 244, 0.3) 70%,
      rgba(250, 247, 244, 0.1) 100%
    );
  }
}

@media (max-width: 426px) {
  #hero-1 .container {
    width: 100%;
  }
}
/* SUPPORT BAR CSS END */

/* ===== SECTION: Experience Highlight START ===== */

#experience-1 {
  text-align: center;
}

/* Header */
.experience-1__header {
  max-width: 48rem;
  margin: 0 auto var(--spaceLg);
}

.experience-1__header h2 {
  font-weight: 500;
}

.experience-1__heading-accent {
  display: block;
  margin-top: 0.4rem;
  font-family: "Cormorant Garamond Italic", var(--headerFont);
  color: var(--mainBrandColour);
}

/* Card */
.experience-1__card {
  background: var(--bgColour2);
  border-radius: 1.5rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1050px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spaceLg);
  align-items: center;
  text-align: left;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.06);
}

.experience-1__media {
  height: 400px;
}

/* Image */
.experience-1__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 1rem;
}

/* Content */
.experience-1__content {
  display: grid;
  gap: var(--spaceSm);
}

/* Highlight text */
.experience-1__highlight {
  color: var(--mainBrandColour);
  font-size: 1.4rem;
  padding-top: 1rem;
  line-height: 1em;
  font-family: "Cormorant Garamond Italic", var(--headerFont);
}

.experience-1__cta {
  padding-top: var(--spaceMd);
}

/* Responsive */
@media (max-width: 768px) {
  .experience-1__card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spaceSmmd);
  }

  .experience-1__content {
    text-align: center;
  }

  .experience-1__header {
    margin-bottom: var(--spaceMd);
  }
}

/* ===== SECTION: Experience Highlight END ===== */

/* ===== SECTION: Therapist Profile START ===== */

#therapist-1 {
  background-color: var(--bgColour1);
}

/* Layout */
.therapist-1__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spaceLg);
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

/* Image */
.therapist-1__media {
  position: relative;
  padding: 0.5rem;
  background-color: white;
  border-radius: 1.2rem;
  height: 600px;
  max-width: 430px;
}

.therapist-1__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

/* Name badge */
.therapist-1__name {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--bgColour2);
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-family: var(--headerFont);
  font-weight: 500;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Content */
.therapist-1__content {
  display: grid;
  gap: var(--spaceSm);
}

.therapist-1__content h2 {
  padding-bottom: var(--spaceSm);
}

.therapist-1__content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Features */
.therapist-1__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spaceSm);
  margin: var(--spaceSm) 0;
}

.therapist-1__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bgColour2);
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 300;
}

.therapist-1__features svg {
  width: 24px;
  height: 24px;
  stroke: var(--mainBrandColour);
}

/* CTA */
.therapist-1__content .cta-button {
  margin-top: var(--spaceSm);
}

/* Responsive */
@media (max-width: 768px) {
  .therapist-1__grid {
    grid-template-columns: 1fr;
    gap: var(--spaceSmmd);
  }

  .therapist-1__media {
    height: 410px;
    margin: 0 auto;
  }

  .therapist-1__content {
    text-align: center;
  }
}

@media (max-width: 450px) {
  .therapist-1__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 425px) {
  .therapist-1__name {
    right: -0.5rem;
  }

  .therapist-1__features {
    gap: var(--spaceXs);
  }
}

/* ===== SECTION: Therapist Profile END ===== */

/* ===== SECTION: Treatments START ===== */

#treatments {
  text-align: center;
  background-color: var(--bgColour3);
}

/* Header */
.treatments__header {
  max-width: 46rem;
  margin: 0 auto var(--spaceLg);
}

.treatments__accent {
  color: var(--mainBrandColour);
  font-family: "Cormorant Garamond Italic", var(--headerFont);
}

.treatments__header p {
  margin-top: var(--spaceSm);
}

/* Grid */
.treatments__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spaceSmmd);
  max-width: 1150px;
  margin: 0 auto;
}

/* Card */
.treatments__card {
  background: var(--bgColour2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.25rem;
  text-align: left;
  display: grid;
  gap: var(--spaceSm);
  box-shadow: 0 0.75rem 1rem rgba(0, 0, 0, 0.06);
}

.treatments__card svg {
  width: 28px;
  height: 28px;
  fill: var(--mainBrandColour);
}

.treatments__card h3 {
  font-family: var(--headerFont);
  font-weight: 500;
}

/* CTA */
.treatments__cta {
  margin-top: var(--spaceLg);
}

/* Responsive */
@media (max-width: 768px) {
  .treatments__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .treatments__header {
    margin-bottom: var(--spaceMd);
  }
}
/* ===== SECTION: Treatments END ===== */

/* ===== SECTION: Long-Term Focus START ===== */

#long-term {
  position: relative;
  text-align: center;
  color: var(--textColour2);
  overflow: hidden;
}

#long-term .container {
  z-index: 2;
  position: relative;
}

/* Image layer */
.long-term__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.long-term__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Dark overlay */
.long-term__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(41, 41, 41, 0.89);
}

/* Content */
.long-term__content {
  margin: 0 auto;
  display: grid;
  gap: var(--spaceSm);
}

/* Icon */
.long-term__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--mainBrandColour);
}

.long-term__accent {
  color: var(--mainBrandColour);
  font-family: "Cormorant Garamond Italic", var(--headerFont);
}

/* Paragraphs */
.long-term__content p {
  opacity: 0.85;
}

/* ===== SECTION: Long-Term Focus END ===== */

/* Gallery Section Start */
#gallery {
  background-color: var(--bgColour3);
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spaceMd);
  margin-bottom: var(--spaceMd);
}

.gallery-heading-wrap h2 {
  margin-bottom: var(--spaceSm);
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gallery-arrow {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--mainBrandColour);
  border-radius: 50%;
  background-color: transparent;
  color: var(--textColour1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.gallery-arrow-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow-next,
.gallery-arrow-prev:not(.is-disabled) {
  background-color: var(--mainBrandColour);
  border-color: var(--mainBrandColour);
  color: #111;
}

.gallery-arrow.is-disabled {
  background-color: transparent;
  border-color: var(--mainBrandColour);
  color: var(--textColour1);
  opacity: 0.75;
  cursor: default;
}

.gallery__cta {
  justify-content: center;
  padding-top: var(--spaceLg);
  display: flex;
}

.gallery-arrow:hover {
  background-color: #f8cbcb;
}

.gallery-slider {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: var(--spaceSm);
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceSm);
}

.gallery-card {
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--bgColour2);
  height: 540px;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 900px) {
  .gallery-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-controls {
    align-self: flex-end;
  }
}

@media screen and (max-width: 769px) {
  .gallery-card {
    height: 400px;
  }

  .gallery-top {
    gap: var(--spaceSmmd);
    margin-bottom: var(--spaceSmmd);
  }

  .gallery-card img {
    aspect-ratio: 4 / 4.4;
  }
}

@media (max-width: 450px) {
  .gallery-page {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section End */

/* Testimonials Section Start */
#testimonials {
  background: var(--bgColour2);
}

.testimonials-header {
  max-width: 52rem;
  margin: 0 auto var(--spaceLg);
  text-align: center;
}

.testimonials-header .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonials-header h2 {
  margin-bottom: var(--spaceSm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceSmmd);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  background-color: var(--bgColour1);
  border-radius: 1rem;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  margin-bottom: var(--spaceSm);
}

.testimonial-star {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--mainBrandColour);
  flex-shrink: 0;
}

.testimonial-quote {
  margin: 0 0 var(--spaceSm);
}

.testimonial-footer {
  margin-top: auto;
}

.testimonial-name {
  font-family: var(--headerFont);
  font-weight: 500;
  font-size: 1.2rem;
}

.testimonial-location {
  color: var(--textColour2);
  font-size: 0.95rem;
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spaceLg);
  gap: 2rem;
}

.testimonials-btn {
  min-width: 10rem;
  border: 1px solid var(--mainBrandColour);
  border-radius: 0.4rem;
  color: var(--mainBrandColour);
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  font-weight: 500;
}

.testimonials-btn:hover,
.testimonials-btn:focus-visible {
  background-color: rgba(201, 162, 74, 0.08);
}

@media screen and (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .testimonials-header {
    margin-bottom: var(--spaceMd);
  }
}
/* Testimonials Section End */

/* ===== SECTION: Location START ===== */

#location {
  background-color: var(--bgColour1);
}

/* Main grid */
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: var(--spaceLg);
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}

/* Left content */
.location__content {
  display: grid;
  gap: var(--spaceSm);
}

.location__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: var(--bgColour3);
  font-size: 0.9rem;
  font-weight: 500;
}

.location__eyebrow svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--mainBrandColour);
  flex-shrink: 0;
}

.location__content h2 {
  font-weight: 500;
}

.location__intro {
  max-width: 33rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Features */
.location__features {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: var(--spaceXs);
}

.location__features li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background-color: var(--bgColour3);
}

.location__features svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--mainBrandColour);
  flex-shrink: 0;
}

.location__features span {
  line-height: 1.5;
  font-weight: 300;
}

/* Map */
.location__map-wrap {
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.08);
  min-height: 23rem;
}

.location__map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23rem;
  border: 0;
  filter: saturate(0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .location__grid {
    grid-template-columns: 1fr;
  }

  .location__intro {
    max-width: none;
  }

  .location__map-wrap,
  .location__map {
    min-height: 20rem;
  }
}

/* ===== SECTION: Location END ===== */

/* ===== SECTION: CTA START ===== */

#cta {
  background-color: var(--mainBrandColour);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Content */
.cta__content {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: var(--spaceMd);
}

/* Heading */
.cta__content h2 {
  color: var(--textColour2);
  font-size: clamp(2.5rem, 3.3vw, 3.3rem);
}

/* Button */
.cta__button {
  margin: 0 auto;
  background-color: var(--bgColour2);
  color: var(--mainBrandColour);
  border-radius: 999px;
  min-width: 12rem;
}

.cta__button:hover,
.cta__button:focus-visible {
  background-color: #f0f0f0;
}

/* ===== SECTION: CTA END ===== */
