html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fdf8f4;
  color: #5a5f4c;
  font-family: "lato", sans-serif;
}

/* HEADER SECTION */

.header {
  align-items: center;
  background-color: #fdf8f4;
  border-bottom: 1px solid rgb(203, 153, 126, 0.3);
  box-shadow: 0 2px 4px rgb(203, 153, 126, 0.1);
  color: #6b705c;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header .logo {
  margin-left: 10%;
}

.header .navigation {
  margin-left: auto;
}

.logo {
  align-items: center;
  color: #6b705c;
  display: flex; /* Keeps the icon and text on the same line */
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  gap: 12px;
  text-decoration: none; /* Remove underline from the logo link */
}

.icon__text {
  align-items: flex-start; /* Aligns the text to the left of the icon */
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Prevents the text from shrinking */
}

.logo__icon {
  width: 44px;
}
.logo__title {
  display: block;
  line-height: 1.2;
}

.logo__subtitle {
  color: #6b705c;
  display: block;
  font-family: "lato", sans-serif;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 1px;
  white-space: nowrap; /* Prevents the subtitle from wrapping to the next line */
}

/* NAVIGATION SECTION */

.nav-list {
  display: flex;
  font-family: "lato", sans-serif;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #124559;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

/* Add a hover effect for the navigation links */

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: #3d3d2e;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #cb997e;
}

.nav-link-booking {
  background-color: #6b705c;
  color: #feeadb;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.nav-link-booking:hover {
  background-color: #3d3d2e;
  color: #feeadb;
}

/* CALL BTN SECTION */

.sticky-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999; /* Ensures the button stays on top of other elements */
  opacity: 0;
  pointer-events: none; /* Prevents interaction when hidden */
  transform: translateY(20px); /* Moves the button down when hidden */
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s ease-in-out; /* Smooth transition for showing/hiding the button */
}

.sticky-btn--visible {
  opacity: 1;
  pointer-events: auto; /* Allows interaction when visible */
  transform: translateY(0); /* Resets the position when visible */
}

.call-btn {
  align-items: center;
  background-color: #d5a58a;
  border: none;
  border-radius: 50px;
  box-shadow:
    0 4px 10px rgba(61, 61, 46, 0.15),
    0 0 20px rgba(213, 165, 138, 0.6),
    0 0 40px rgba(213, 165, 138, 0.3);
  color: #fdf8f4;
  display: flex; /* Keeps the icon and text on the same line */
  font-family: "lato", sans-serif;
  font-size: 1rem;
  gap: 12px; /* Space between the icon and text */
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s,
    box-shadow 0.32s ease,
    transform 0.3s ease;
}

.call-btn:hover {
  background-color: #cb997e;
  transform: scale(1.02);
  box-shadow:
    0 6px 15px rgba(61, 61, 46, 0.2),
    0 0 25px rgba(213, 165, 138, 0.8),
    0 0 50px rgba(213, 165, 138, 0.5);
}

.sticky-btn__icon {
  background-color: rgba(241, 183, 151, 0.5);
  opacity: 0.6; /*Makes the icon slightly transparent */
  box-sizing: content-box; /* Ensures padding doesn't affect the size of the icon */
  border-radius: 50%; /* Makes the icon circular */
  height: 20px;
  padding: 10px; /* Adds some padding around the icon */
  width: 20px;
}

.sticky-btn__text {
  align-items: flex-start; /* Aligns the text to the left */
  display: flex;
  flex-direction: column; /* Stacks the title and subtitle vertically */
  flex-shrink: 0; /* Prevents the text from shrinking */
  font-family: "lato", sans-serif;
  text-align: left; /* Aligns the text to the left */
}

.sticky-btn__title {
  display: block;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.sticky-btn__subtitle {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap; /* Prevents the subtitle from wrapping to the next line */
}

/* HERO SECTION */

.hero {
  align-items: center;
  background: linear-gradient(
    105deg,
    #fae9df 0%,
    #fffbf7 40%,
    #fdf5ef 100%
  ); /* Creates a gradient background for the hero section */
  display: flex;
  justify-content: center;
  min-height: 95dvh;
  padding: 4rem 2rem;
}

.hero__container {
  align-items: center;
  display: grid;
  column-gap: 3rem;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 1200px;
  margin: 0 auto;
  row-gap: 2.2rem;
  width: 100%;
}

.header__brand {
  grid-column: 1; /* Spans the first two columns */
  text-align: left;
}

.hero-certification {
  align-items: center;
  background-color: transparent;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  color: #cb997e;
  display: inline-flex;
  font-size: 0.95rem;
  gap: 1rem; /* adjusts the space between the text and lines */
  justify-content: center;
  letter-spacing: 1px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  text-shadow: 6px 6px 12px rgba(213, 165, 138, 0.6);
  width: auto;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-certification::before,
.hero-certification::after {
  background-color: #cb997e;
  content: "";
  flex: 1;
  height: 1.2px;
  display: inline-block;
  width: 2vw;
}

@keyframes fadeInUp {
  from {
    opacity: 0; /* fully invisible */
    transform: translateY(15px); /* positioned 15px lower than normal */
  }
  to {
    opacity: 1; /* fully visable */
    transform: translateY(0); /* settles into its correct position */
  }
}

.hero__motto-container {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.hero__motto-top {
  color: #3d3d2e;
  display: block;
}

.hero__motto-bottom {
  color: #6b705c;
  display: block;
}

.hero__intro {
  font-family: "lato", sans-serif;
  font-size: 1.1rem;
  font-weight: normal;
  grid-column: 1;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero__info {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  grid-column: 1;
  margin-bottom: 3rem;
}

.hero-booking-btn {
  background-color: #6b705c;
  border: none;
  border-radius: 30px;
  box-shadow:
    0 4px 10px rgba(61, 61, 46, 0.15),
    0 0 20px rgba(213, 165, 138, 0.6),
    0 0 40px rgba(213, 165, 138, 0.3);
  color: #ffe8d6;
  cursor: pointer;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  padding: 20px 28px;
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.hero-booking-btn:hover {
  background-color: #5a5f4c;
  color: #cb997e;
}

.packages-link {
  background-color: #f9f1eb;
  border: 1px solid #6b705c;
  border-radius: 100px;
  box-shadow:
    0 0 20px rgba(213, 165, 138, 0.3),
    0 0 40px rgba(213, 165, 138, 0.2);
  color: #6b705c;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  padding: 20px 28px;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.3s ease;
}

.packages-link:hover {
  color: #a5a58d;
  border-color: #a5a58d;
}

.hero__services {
  grid-column: 1;
}

.services {
  align-items: center; /* vertically aligns text and dots */
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* uniform spacing between text and dots */
  padding: 0;
  list-style: none;
}

.service-item {
  align-items: center;
  background-color: transparent;
  color: #6b705c;
  display: inline-flex;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  gap: 1.5rem;
  padding: 0; /* clears block padding */
  text-align: center;
}

.service-item::after {
  content: "•";
  color: #cb997e;
  font-size: 1.2rem; /* makes the dots larger or smaller */
  line-height: 1;
}

.service-item:last-child::after {
  content: none;
}

.hero__content-right {
  display: flex;
  padding-left: 20px;
  width: 100%;
}

.hero__image {
  display: block;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  filter: opacity(0.99) drop-shadow(8px 12px 24px rgba(107, 112, 92, 0.15));
}

/* ABOUT SECTION */

.about__section {
  background-color: #fdf8f4;
  padding: 100px 24px;
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Space between the profile image and the text */
  margin: 0 auto;
  max-width: 1200px;
}

.about__profile-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2.5rem; /* Space between the profile image and the text */
  width: 100%;
}

.about__image-box {
  flex: 0 0 35%;
  max-width: 380px;
  overflow: visible; /* ensures badge isn't cut off */
  position: relative;
}

.about-profile-pic {
  display: block; /* Ensures the image behaves like a block element */
  border-radius: 12px; /* Makes the image circular */
  box-shadow:
    0 12px 28px 0 rgba(107, 112, 92, 0.12),
    0 2px 4px 0 rgba(107, 112, 92, 0.04);
  height: auto; /* Sets a fixed height for the image */
  object-fit: cover; /* Ensures the image covers the box without distortion */
  width: 100%; /* spans the full width of the 380px */
}

.service-delivery {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 12px 28px 0 rgba(107, 112, 92, 0.12),
    0 2px 4px 0 rgba(107, 112, 92, 0.04);
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  padding: 18px 24px;
  position: absolute;
  text-align: center;
  top: 75%;
  transform: translateY(-50%);
  right: -210px;
  width: max-content;
  z-index: 10;
}

.service-delivery-top {
  color: #a5a58d;
  font-family: "lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-delivery-bottom {
  color: #6b705c;
  font-family: "playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.about__info {
  flex: 0 0 50%;
  padding-left: 50px;
}

.about__heading {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-practitioner-name {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-practitioner-qualification {
  color: #a5a58d;
  font-family: "lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about__intro p {
  align-content: space-evenly;
  color: #6b705c;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem; /* Space between paragraphs */
}

.about-summary {
  list-style: none; /* Removes default list styling */
  margin-top: 1rem; /* Adds space above the list */
  padding: 0;
}

.about-summary li {
  color: #6b705c;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  padding-left: 1.5rem; /* Space for the custom bullet */
  position: relative; /* Allows for absolute positioning of pseudo-elements */
  margin-bottom: 0.5rem; /* Space between list items */
}

.about-summary li::before {
  color: #cb997e; /* Bullet color */
  content: "•"; /* Custom bullet character */
  font-size: 1.25rem; /* Bullet size */
  left: 0; /* Aligns the bullet to the left */
  position: absolute; /* Positions the bullet relative to the list item */
  top: 50%; /* Vertically centers the bullet */
  transform: translateY(-50%); /* Adjusts for perfect vertical centering */
}
/* who we serve section */
.about__sub-section {
  background-color: #fdf8f4;
  padding: 80px 24px;
  text-align: center;
}

.about__sub-heading {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-text {
  color: #3d3d2e;
  font-family: "playfair Display", serif;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.demo__group {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(
    3,
    1fr
  ); /*generates 3 equal side-by-side columns */
  max-width: 1200px;
  margin: 0 auto;
}

.demo-card {
  background-color: #ffffff;
  border: 1px solid rgba(221, 190, 169, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(107, 112, 92, 0.03);
  padding: 40px 32px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.demo-card:hover {
  box-shadow: 0 15px 35px rgba(107, 112, 92, 0.06);
  transform: translateY(-5px); /* Moves the group up slightly on hover */
}

.demo-icon {
  align-items: center;
  background-color: #f5f0ea;
  border-radius: 50%;
  box-sizing: border-box; /* makes sure padding shrinks the content instead of growing the circle*/
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 28px;
  width: 48px;
}

.demo-icon img {
  height: 16px;
  object-fit: contain;
  opacity: 0.2;
  width: 16px;
}

.demo-card h3 {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-list li {
  color: #6b705c;
  font-family: "lato", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.demo-list li::before {
  color: #cb997e;
  content: "•";
  font-size: 1.1rem;
  left: 0;
  position: absolute;
  top: -1px;
}

/* PACKAGES SECTION */

.packages-section {
  background-color: #f5f0ea;
  padding: 100px 24px;
  text-align: center;
}

.packages__header {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.packages-text {
  color: #6b705c;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.packages-sub-text {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
}
/* 2x2 card grid*/

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

.packages__offers {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
/*individual card styling*/
.packages__offer-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(221, 190, 169, 0.2);
  box-shadow: 0 4px 20px rgba(107, 112, 92, 0.02);
  display: flex;
  flex-direction: column;
  padding: 40px;
  text-align: left;
}

.offer-icon {
  background-color: #fdf8f4;
  border-radius: 50%;
  box-sizing: border-box;
  height: 44px;
  object-fit: contain;
  padding: 12px;
  margin-bottom: 24px;
  width: 44px;
}

.offer-title {
  color: #6b705c;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.offer-subtitle {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.offer-description {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: auto;
}

.offer__divider {
  border: 0;
  border-top: 1px solid rgba(221, 190, 169, 0.4);
  margin: 28px 0 20px 0;
  width: 100%;
}
/*pricing and reveal accordion interface*/
.packages__offer-card {
  position: relative;
}

.offer__footer-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  width: 100%;
}

.offer__price {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}

.offer-trigger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.offer-meta-right {
  align-items: center;
  color: #cb997e;
  display: flex;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 6px;
}

.offer-trigger-btn[aria-expanded="false"] .offer-collapse,
.offer-trigger-btn[aria-expanded="false"] .offer-collapse + .offer-arrow {
  display: none;
}

.offer-trigger-btn[aria-expanded="true"] .offer-reveal,
.offer-trigger-btn[aria-expanded="true"] .offer-reveal + .offer-arrow {
  display: none;
}
/*Dropdown accordion contents*/

.offer-content {
  display: none; /* controlled via JS*/
  margin-top: 24px;
}

.offer__footer-row:has(.offer-trigger-btn[aria-expanded="true"])
  ~ .offer-content {
  display: block;
}

.content-inner-list {
  border-top: 1px dashed rgba(221, 190, 169, 0.4);
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  padding-top: 24px;
}

.content-inner-list li {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.content-inner-list li::before {
  content: "✓";
  color: #cb997e;
  font-size: 0.85rem;
  font-weight: bold;
  left: 0;
  position: absolute;
}

.contact-btn {
  background-color: #6b705c;
  border-radius: 30px;
  color: #cb997e;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.contact-btn:hover {
  background-color: #5a5f4c;
}

.offer-declaration {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 48px;
  line-height: 1.5;
}

/* TESTIMONIAL SECTION */

.testimonials__section {
  background-color: #5a5f4c;
  padding: 100px 24px;
  text-align: center;
}

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

.testimonials__header {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testimonials-text {
  color: #ffe8d6;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.testimonials-sub-text {
  color: #b7b7a4;
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
}
/*horizontal track*/
.testimonials__list {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  max-width: 1200px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on devices */
  scrollbar-width: none; /* hides scrollbar on firefox */
  scroll-snap-type: x mandatory; /*set up scroll snapping mechanism */
  padding-bottom: 20px; /*extra room so the shadows.borders don't clip */
}
/*indivicdual cards*/
.testimonial-card {
  background-color: rgba(253, 248, 244, 0.08);
  border: 1px solid rgba(253, 248, 244, 0.12);
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 calc(50% - 16px);
  flex-direction: column; /*orders contents vertically down*/
  justify-content: space-between;
  margin: 0;
  padding: 40px;
  scroll-snap-align: start;
  text-align: left;
}

.testimonials-icon {
  height: auto;
  margin-bottom: 20px;
  opacity: 0.4; /*softer, understated vector shape contrast*/
  width: 28px;
}

.testimonials-comment {
  color: #ecd9c6;
  margin-bottom: 20px;
}
/*client metaddata footer frame*/
.testimonials__meta {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-style: normal;
  gap: 16px;
}

.client-initials-icon {
  align-items: center;
  border-radius: 50%;
  color: #fdf8f4;
  display: flex;
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  height: 44px;
  justify-content: center;
  width: 44px;
}
/*figma grapics*/
.inline-icon--lw {
  background-color: #cb997e;
}
.inline-icon--js {
  background-color: #a5a58d;
}
.inline-icon--ps {
  background-color: #ddbea9ff;
}
.inline-icon--nl {
  background-color: #8c927c;
}
/*bio text container*/
.client-bio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonials__name {
  color: #ecd9c6;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
}

.testimonials__details {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
}

.slider-controls-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* .slider-arrow {
  background: transparent;
  border: 1px solid rgba(253, 248, 244, 0.2);
  border-radius: 50%;
  color: #cb997e;
  cursor: pointer;
  font-family: monospace;
  font-size: 1.1rem;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  border-color: #cb997e;
  color: #cb997e;
} */

.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-nav .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(253, 248, 244, 0.2);
  border-radius: 50%;
  display: inline-block;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.slider-nav .dot.active {
  background-color: #cb997e;
  transform: scale(1.2);
}

.slider-nav .dot.desktop-hide {
  display: none;
}

.swipe-hint {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: lowercase;
  opacity: 0.7;
  text-align: center;
}

/* MEDIA SECTION */

.media__section {
  background-color: #f5f0ea;
  padding: 100px 24px;
  text-align: center;
}

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

.media__header {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.media-text {
  color: #6b705c;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.media-sub-text {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
}

.video__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.media-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-item.collapsed .video-wrapper {
  aspect-ratio: 21 / 9;
}

.media-item.expanded .video-wrapper {
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 40px rgba(107, 112, 92, 0.18);
}

.media-caption {
  padding: 0 4px;
}

.media-category {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.media-title {
  color: #6b705c;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

.video-wrapper {
  background-color: #f5f0ea;
  border: 1px solid rgba(107, 112, 92, 0.15);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(107, 112, 92, 0.1);
  overflow: hidden;
  position: relative;
  transition:
    aspect-ratio 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
  width: 100%;
}

.video-wrapper video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-wrapper iframe {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}

/* CONTACT SECTION */

.contact__section {
  background-color: #fdf8f4;
  padding: 100px 24px;
  text-align: center;
}

.contact__container {
  margin: 0 auto 50px auto;
  max-width: 500px;
}

.contact__header {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-text {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.contact-sub-text {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-form {
  background-color: #ffffff;
  border: 1px solid rgba(221, 190, 169, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(107, 112, 92, 0.2);
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 540px;
  padding: 60px 50px;
}

.form-group {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  width: 100%;
}

.input__title {
  color: #3d3d2e;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  background-color: #fdf8f4;
  border: 1px solid rgba(221, 190, 169, 0.5);
  border-radius: 8px;
  box-sizing: border-box;
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  outline: none;
  padding: 14px 18px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #cb997e;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  opacity: 0.6;
}

.btn-submit {
  background: #6b705c;
  border: none;
  border-radius: 30px;
  box-shadow:
    0 4px 10px rgba(61, 61, 46, 0.15),
    0 0 20px rgba(213, 165, 138, 0.6),
    0 0 40px rgba(213, 165, 138, 0.3);
  color: #ffe8d6;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 10px;
  padding: 16px;
  transition: background-color 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #3d3d2e;
}

/* FOOTER SECTION */

.footer {
  background-color: #3d3d2e;
  padding: 80px 24px 40px 24px;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: 1100px;
}

.footer__top-row {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer__brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.footer__brand .logo {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer__brand .logo__title {
  color: #ffe8d6;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer__brand .logo__subtitle {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer__motto {
  color: #a2a28b;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
  text-align: left;
}

.footer__sub-motto {
  color: #a2a28b;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
  text-align: left;
}

.footer-delivery-method {
  color: #ffe8d6;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  margin: 0;
  text-align: left;
}

.footer__logo {
  width: 44px;
}

.footer__logo-link {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
  max-width: 600px;
}

.footer__nav a {
  color: #a2a28b;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__nav a:hover {
  color: #cb997e;
}

/*.footer__socials {
  align-items: center;
  display: flex;
  gap: 16px;
}
.social-icons {
  align-items: center;
  font-size: 12px;
  transition: transform 0.2s;
}
.social-icons:hover {
  transform: scaleY(2px);
}

.social-icons img,
.github-logo-svg,
.social-logo-svg {
  filter: invert(47%) sepia(19%) saturate(684%) hue-rotate(149deg)
    brightness(94%) contrast(85%);
  transition: filter 0.2s ease;
}

.social-icons:hover img,
.social-icons:hover, .social-icons:hover .social-logo-svg {
  filter: invert(6%) sepia(21%) saturate(1478%) hue-rotate(156deg)
    brightness(92%) contrast(98%);
}*/

.footer__divider {
  border: 0;
  border: 1px solid rgba(165, 165, 141, 0.15);
  margin: 0;
  width: 100%;
}

.footer__bottom-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  width: 100%;
}

.footer__copyright {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  margin: 0;
}

.footer__attribute {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  margin: 0;
}

.footer__attribute a {
  color: #cb997e;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer__attribute a:hover {
  color: #ffe8d6;
}

/* SENT MSG POP UP */

.sent-msg-overlay {
  align-items: center;
  backdrop-filter: blur(4px); /* Blurs the background content */
  background-color: rgba(61, 61, 61, 0.4); /* Semi-transparent black */
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 10000; /* Above all other content */
}

.sent-msg-overlay.show {
  display: flex;
}

.sent-msg-card {
  background: #ffffff;
  border: 1px solid rgba(221, 190, 169, 0.25);
  border-radius: 16px;
  box-shadow: 0px 15px 45px rgba(107, 112, 92, 0.12); /* Subtle shadow for depth */
  box-sizing: border-box;
  max-width: 400px;
  padding: 40px 32px;
  text-align: center;
}

.sent-msg__image {
  background-color: #fdf8f4;
  border-radius: 50%;
  box-sizing: border-box;
  height: 48px;
  margin-bottom: 24px;
  object-fit: contain;
  padding: 12px;
  width: 48px;
}

.sent-msg__header {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.sent-msg-card p {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================ LEGAL SECTION PAGE ===============*/

body {
  background-color: #fdf8f4;
  margin: 0;
  padding: 0;
}

.legal-page .main {
  padding: 0 24px 80px 24px;
}

.legal-content-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
/* LEGAL HEADER SECTION */

.legal-page .header {
  align-items: center;
  border-bottom: 1px solid rgb(203, 153, 126, 0.3);
  box-shadow: 0 2px 4px rgb(203, 153, 126, 0.1);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 24px;
  width: 100%;
}

.homepage-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b705c; /* --olive */
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.homepage-btn:hover {
  color: #cb997e; /* --light-bronze */
}

.homepage-house-btn {
  height: 25px;
  opacity: 0.7;
  width: auto;
}

.legal-page .header__logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 0 auto;
}

.legal-page .logo__text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.legal-page .logo__title {
  color: #6b705c;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.legal-page .logo__subtitle {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* LEGAL Hero Section */

.legal-hero {
  margin: 0;
  padding: 40px 0 10px 0;
  text-align: left;
}

.legal-hero__tag {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.legal-hero__title {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.legal-hero__meta {
  color: #6b705c;
  margin: 0;
}

/* Tab Header / Links */

.tab__header {
  border-bottom: 1px solid rgba(221, 190, 169, 0.3);
  margin: 30px 0 50px 0;
  padding-bottom: 0;
  width: 100%;
}

.tab__names {
  bottom: -1px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.tab__names li {
  display: block;
}

.tab__names a {
  border-radius: 12px 12px 0 0; /* just curves the top */
  color: #a5a58d;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  position: relative;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tab__names a:hover {
  color: #6b705c;
}

.tab__names a.active-tab {
  background-color: #ffffff;
  border-top: 1px solid rgba(221, 190, 169, 0.3);
  border-left: 1px solid rgba(221, 190, 169, 0.3);
  border-right: 1px solid rgba(221, 190, 169, 0.3);
  color: #6b705c;
  font-weight: bold;
}

.tab__names a.active-tab::after {
  background-color: #6b705c;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

/* Card Content Container */

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

.tab__container {
  background-color: #ffffff;
  border: 1px solid rgba(221, 190, 169, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(107, 112, 92, 0.02);
  box-sizing: border-box;
  max-width: 800px;
  padding: 60px 50px;
  width: 100%;
}

/* hide all the panels by default */
.tab-panel {
  display: none;
}
/* show only the active panel */
.tab-panel.active-panel {
  display: block;
}

.tab__info {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.tab__title {
  color: #3d3d2e;
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: bold;
  margin: 0;
}

.update__info {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
}

.tab-header-divider {
  border: 0;
  border-top: 1px solid rgba(221, 190, 169, 0.25);
  margin: 0 0 40px 0;
}
/* legal text typography */
.tab__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tab__text-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.tab__text-section h2 {
  color: #3d3d2e;
  font-family: "Playfair Display";
  font-size: 1.35rem;
  font-weight: bold;
  margin: 0 0 12px 0;
}

.tab__text-section p {
  color: #6b705c;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
/* minimal legal footer */
.sub-footer-divider {
  border: 0;
  border-top: 1px solid rgba(221, 190, 169, 0.2);
  margin: 60px 0 34px 0;
  width: 100%;
}

.sub-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}

.sub-footer__copyright {
  color: #a5a58d;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  margin: 0;
  white-space: nowrap; /* Prevents the subtitle from wrapping to the next line */
}

.sub-footer__nav {
  display: flex;
  gap: 16px;
}

.sub-footer__nav a {
  color: #cb997e;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.sub-footer__nav a:hover {
  color: #b58368;
}

/* ================== RESPONSIVE STYLES FOR DEVICES ====================== */

@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
    position: relative;
  }

  .header .logo {
    margin-left: 0;
  }

  .logo {
    font-size: 1.3rem;
    gap: 8px;
  }

  .logo__icon {
    width: 32px;
  }

  .logo__subtitle {
    font-size: 0.7rem;
  }
  /* hamber menu - drop down */
  .menu-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    position: relative;
    z-index: 1001;
  }

  .hamburger-bar {
    background-color: #6b705c;
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: all 0.3s ease; /* Makes the transition to an X perfectly smooth */
    width: 22px;
  }

  .menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0; /* Vanishes the center line */
  }
  .menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header .navigation {
    background-color: #fdf8f4;
    box-shadow: 0 10px 20px rgba(203, 153, 126, 0.15);
    display: block;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
    width: 100%;
    z-index: 999;
  }

  .header .navigation.active {
    max-height: 400px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    text-align: center;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(221, 190, 169, 0.25);
    width: 100%;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-link {
    color: #6b705c;
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1.1rem 0;
    width: 100%;
  }

  .nav-link-booking {
    background-color: #6b705c;
    border-radius: 30px;
    color: #feeadb;
    display: block;
    margin: 1.25rem 0 0.5rem 0;
    padding: 12px 0;
    text-align: center;
    width: 100%;
  }

  /* sticky btn */

  .sticky-btn {
    bottom: 16px;
    right: 16px;
  }

  .call-btn {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(61, 61, 46, 0.02);
    gap: 0;
    padding: 8px;
  }

  .sticky-btn__icon {
    background-color: transparent;
    opacity: 1;
    padding: 6px;
    height: 24px;
    width: 24px;
  }

  .sticky-btn__text {
    display: none;
  }

  /* Hero Section */

  .hero {
    min-height: auto;
    padding: 3rem 1.25rem;
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .header__brand {
    text-align: center;
  }

  .hero-certification {
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
    gap: 0.75rem;
  }

  .hero-certification::before,
  .hero-certification::after {
    width: 30px;
  }

  .hero__motto-container {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero__intro {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  .hero__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .hero-booking-btn,
  .packages-link {
    display: block;
    box-sizing: border-box;
    padding: 16px 24px;
    text-align: center;
    width: 100%;
  }

  .services {
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .service-item {
    font-size: 0.9rem;
    padding: 0;
    gap: 1rem;
  }

  .hero__image {
    display: none;
  }

  /* DEVICE ABOUT SECTION */
  .about__section {
    padding: 3rem 1.25rem;
  }

  .about__profile-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .about__image-box {
    flex: 0 0 100%;
    margin-bottom: 3.5rem;
    max-width: 100%;
    width: 100%;
  }

  .service-delivery {
    bottom: -45px;
    left: 0;
    margin: 0 auto;
    max-width: 320px;
    right: 0;
    top: auto;
    transform: translateY(0);
    width: calc(100% - 40px);
  }

  .about__info {
    flex: 0 0 100%;
    padding-left: 0;
    width: 100%;
  }

  .about-practitioner-name {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .about-practitioner-qualification {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .about__intro p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .about-summary {
    margin-top: 1.5rem;
  }

  .about-summary li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
  }
  /* about sub-section */
  .about__sub-section {
    padding: 3rem 1.25rem;
  }

  .about__sub-heading {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .about-text {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }

  .demo__group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .demo-card {
    padding: 32px 24px;
  }

  .demo-icon {
    margin-bottom: 20px;
  }

  .demo-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .demo-listli {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* PACKAGES SECTION */
  .packages-section {
    padding: 3rem 1.25rem;
  }

  .packages__header {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .packages-text {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .packages-sub-text {
    font-size: 0.95rem;
    margin: 0 auto 2.5rem auto;
  }

  .packages__offers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .packages__offer-card {
    padding: 32px 24px;
  }

  .offer-icon {
    margin-bottom: 20px;
  }

  .offer-title {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }

  .offer-subtitle {
    font-size: 0.7rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .offer-description {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .offer__divider {
    margin: 24px 0 16px 0;
  }

  .offer__footer-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .offer__price {
    font-size: 0.85rem;
  }

  .offer-meta-right {
    font-size: 0.8rem;
  }
  /* dropdown accordion content */
  .offer-content {
    margin-top: 16px;
  }

  .content-inner-list {
    padding-top: 16px;
    margin-bottom: 24px;
  }

  .content-inner-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .contact-btn {
    font-size: 0.85rem;
    padding: 12px 20px;
    width: 100%;
  }

  .offer-declaration {
    margin-top: 2rem;
    font-size: 0.75rem;
  }

  /* TESTIMONIALS SECTION */

  .testimonials__section {
    padding: 3.5rem 1.25rem;
  }

  .testimonials__container {
    margin-bottom: 2.25rem;
  }

  .testimonials-text {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .testimonials-sub-text {
    font-size: 0.95rem;
  }

  .testimonials__list {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
    /*padding: 32px 24px;*/
  }

  .testimonials-icon {
    margin-bottom: 16px;
  }

  .testimonials-comment {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .testimonials__meta {
    gap: 12px;
  }

  .client-initials-icon {
    font-size: 0.8rem;
    height: 40px;
    width: 40px;
  }

  .testimonials__name {
    font-size: 0.9rem;
  }

  .testimonials__details {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .slider-nav .dot.desktop-hide {
    display: inline-block;
  }

  /* MEDIA SECTION */

  .media__section {
    padding: 3rem 1.2rem;
  }

  .video__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-item {
    text-align: center;
  }

  /* CONTACT SECTION */

  .contact__section {
    padding: 3.5rem 1.25rem;
  }

  .contact__container {
    margin-bottom: 2rem;
  }

  .contact-text {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .contact-sub-text {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 40px 24px;
    width: 100%;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 14px;
  }

  /* FOOTER SECTION */

  .footer {
    padding: 4rem 1.25rem 6.5rem 1.25rem;
  }

  .footer__container {
    gap: 2.5rem;
  }

  .footer__top-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__brand,
  .logo {
    margin-bottom: 1rem;
  }

  .footer__logo {
    width: 34px;
  }

  .footer__motto {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer__sub-motto {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer-delivery-method {
    font-size: 0.75rem;
  }

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
  }

  .footer__nav a {
    display: block;
    font-size: 0.95rem;
    padding: 4px 0;
    white-space: normal;
  }

  .footer__bottom-row {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }

  .footer__copyright {
    font-size: 0.75rem;
    line-height: 1.4;
    width: 100%;
  }
  /* Msg Pop Up */

  .sent-msg-overlay {
    padding: 0 1.25rem;
  }

  .sent-msg-card {
    padding: 32px 20px;
    width: 100%;
  }

  .sent-msg__image {
    margin-bottom: 20px;
  }

  .sent-msg__header {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .sent-msg-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* LEGAL PAGE */

  .legal-page,
  .main {
    padding: 0 1.25rem 4rem 1.25rem;
  }

  .legal-page,
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 16px;
  }

  .legal-page,
  .header__logo {
    margin: 0;
  }

  .legal-page,
  .logo__title {
    font-size: 1.3rem;
  }

  .legal-hero {
    padding: 2.5rem 0 1rem 0;
  }

  .legal-hero__title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .legal-hero__meta {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .tab__header {
    margin: 1.5rem 0 2rem 0;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    margin-left: 0;
    -webkit-overflow-scrolling: touch;
  }

  .tab__header::-webkit-scrollbar {
    display: none;
  }

  .tab__names {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
  }

  .tab__names li {
    display: inline-block;
    flex: 0 0 auto;
  }

  .tab__names a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .tab__container {
    border-radius: 12px;
    padding: 32px 20px;
  }

  .tab__info {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .tab__title {
    font-size: 1.85rem;
  }

  .tab-header-divider {
    margin-bottom: 24px;
  }

  .tab__content {
    gap: 28px;
  }

  .tab__text-section h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .tab__text-section p {
    font-size: 0.9rem;
  }

  .sub-footer-divider {
    margin: 40px 0 20px 0;
  }

  .sub-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sub-footer__copyright {
    font-size: 0.75rem;
    line-height: 1.4;
    white-space: normal;
  }

  .sub-footer__nav {
    gap: 12px;
  }

  .sub-footer__nav a {
    font-size: 0.75rem;
    padding: 4px 0;
  }
}

/*
COLOR PALETTE
--light-bronze: #cb997e - #cc997e; 
--grey-sand: #ddbea9ff - ; 
--pink sand: #fdf8f4 - slightly darker #ffe8d6; 
--whitish section background: #fdf8f4
--greyish section background: #f5f0ea
--ash-grey: #A5A58D; 
--olive: #6B705C - #5a5f4c; 
--dark olive: #3d3d2e; 
*/
