/* Font */
@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/OPTIMA.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/OPTIMA_B.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #035835;
  --color-mint: #DDEEDD;
  --color-dark: #333333;
  --color-body: #666666;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-heading: "Optima", "Times New Roman", serif;
  --font-body: "Myriad Pro", Arial, Helvetica, sans-serif;
  --shadow-card: 0 14px 34px rgba(3, 88, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  color: var(--color-white);
  font-size: 60px;
  font-style: normal;
  line-height: 70px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h2 {
  color: var(--color-dark);
  font-size: 36px;
  font-style: normal;
  line-height: 40px;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  color: var(--color-dark);
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

img {
  max-width: 100%;
}

.section-pad {
  padding: 88px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.section-heading {
  max-width: 670px;
  margin: 0 auto 38px;
}

.page-main {
  padding-top: 210px;
}

.page-main h1 {
  color: var(--color-dark);
}

.page-main p {
  text-align: left;
}

.section-heading p,
.royalty-section p,
.about-section p,
.hiring-section p,
.franchise-section p {
  margin-bottom: 0;
}

.section-kicker,
.eyebrow {
  color: var(--color-primary);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: "Myriad Pro";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1.4px;
  line-height: 20px;
  min-height: 42px;
  padding: 11px 28px;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary-green {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}

.btn-primary-green:hover,
.btn-primary-green:focus {
  background: #02462b;
  border-color: #02462b;
  color: var(--color-white);
}

.btn-outline-green {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-green:hover,
.btn-outline-green:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Header */
.site-header {
  background: transparent;
  backdrop-filter: blur(10px);
  min-height: 146px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 34, 28, 0.34);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.top-bar {
  background: var(--color-mint);
  height: 34px;
}

.top-bar .container {
  height: 34px;
}

.top-actions {
  gap: 35px;
}

.top-phone {
  color: #666;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  line-height: normal;
}

.top-phone:hover,
.top-phone:focus {
  color: var(--color-primary);
}

.top-phone img {
  height: 17px;
  width: 17px;
}

.language-select {
  position: relative;
}

.language-select:not(.top-translate)::after,
.top-translate .gtranslate_wrapper::after {
  border-color: var(--color-body) transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-35%);
}

.language-select select,
.top-translate select.gt_selector {
  appearance: none;
  background: transparent;
  border: 0;
  color: #666;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 14px 0 0;
  text-transform: uppercase;
}

.top-translate {
  min-width: 26px;
}

.top-translate .gtranslate_wrapper {
  min-height: 16px;
  position: relative;
}

.top-translate select.gt_selector {
  height: 16px;
  max-width: 34px;
  overflow: hidden;
  padding: 0 10px 0 5px;
  text-overflow: clip;
  white-space: nowrap;
}

.top-translate select.gt_selector option {
  color: #333;
}

.language-select select:focus,
.top-translate select.gt_selector:focus {
  outline: 1px solid rgba(3, 88, 53, 0.35);
  outline-offset: 3px;
}

.logo-panel {
  align-self: stretch;
  margin-bottom: 0;
  margin-top: 0;
  min-height: 112px;
  width: 178px;
}

.brand-logo {
  border-radius: 50%;
  height: 100px;
  object-fit: contain;
  padding: 0;
  width: 100px;
}

.justify-content-center {
  justify-content: start !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  min-height: 112px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(20, 34, 28, 0.28);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-menu-open {
  background: rgba(20, 34, 28, 0.34);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header.is-menu-open .navbar {
  background: rgba(10, 22, 17, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
}

body.nav-menu-open {
  left: 0;
  overflow: hidden;
  position: fixed;
  touch-action: none;
  width: 100%;
}

.page-template-template-terms-of-services .site-header,
.page-template-template-privacy-policy .site-header,
.page-template-template-thank-you .site-header {
  background: transparent;
}

.page-template-template-terms-of-services .navbar,
.page-template-template-privacy-policy .navbar,
.page-template-template-thank-you .navbar {
  background: #333;
  border-color: rgba(255, 255, 255, 0.10);
}

.page-template-template-terms-of-services .site-header.is-scrolled .navbar,
.page-template-template-privacy-policy .site-header.is-scrolled .navbar,
.page-template-template-thank-you .site-header.is-scrolled .navbar {
  background: #333;
}

.navbar-nav {
  gap: 4px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
  padding: 46px 9px;
  position: relative;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .menu-item-has-children > .nav-link {
  padding-right: 19px;
}

.navbar-dark .navbar-nav .menu-item-has-children > .nav-link::before {
  background: url("../images/dropdown-icon.svg") center / contain no-repeat;
  content: "";
  height: 5px;
  pointer-events: none;
  position: absolute;
  right: 9px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  width: 8px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .current-menu-item > .nav-link,
.navbar-dark .navbar-nav .current_page_item > .nav-link {
  color: var(--color-white);
}

.navbar-dark .navbar-nav .nav-link::after {
  background: var(--color-white);
  border-radius: 50%;
  bottom: 36px;
  content: "";
  height: 4px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  width: 4px;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .current-menu-item > .nav-link::after,
.navbar-dark .navbar-nav .current_page_item > .nav-link::after {
  opacity: 1;
}

.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown-menu {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  margin: 0;
  min-width: 230px;
  padding: 10px 0;
}

.navbar-nav .dropdown-item {
  color: #333;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 18px;
  padding: 9px 18px;
  text-transform: uppercase;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .current-menu-item > .dropdown-item {
  background: rgba(3, 88, 53, 0.10);
  color: var(--color-primary);
}

@media (min-width: 1200px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

.navbar-book {
  min-height: 36px;
  padding: 9px 22px;
}

@media (min-width: 1200px) {
  .logo-panel {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .navbar-book {
    position: relative;
  }

  .navbar-book::before {
    background: rgba(255, 255, 255, 0.18);
    content: "";
    height: 112px;
    left: -42px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-nav {
    gap: 0;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 12px;
    letter-spacing: 0.3px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link {
    padding-right: 15px;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link::before {
    right: 4px;
  }

  .navbar-book {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-book::before {
    left: -22px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header {
    background: transparent;
  }

  .navbar-collapse {
    max-height: calc(100dvh - 146px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 0 24px;
    scrollbar-gutter: stable;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse .navbar-nav {
    align-items: center;
    width: 100%;
  }

  .navbar-collapse .navbar-nav > .nav-item {
    width: 100%;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link {
    display: inline-block;
    padding-right: 18px;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link::before {
    right: 0;
    transition: transform 0.2s ease;
  }

  .navbar-dark .navbar-nav .menu-item-has-children.is-open > .nav-link::before {
    transform: translateY(-50%) rotate(180deg);
  }

  .navbar-dark .navbar-nav .nav-link::after {
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-nav .dropdown-menu {
    background: rgba(5, 13, 10, 0.38);
    box-shadow: none;
    display: none;
    min-width: 0;
    padding: 7px 0 12px;
    position: static;
    text-align: center;
  }

  .navbar-nav .dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 22px;
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus,
  .navbar-nav .current-menu-item > .dropdown-item {
    background: transparent;
    color: var(--color-white);
  }

  .navbar-book {
    margin-top: 12px;
  }
}

.navbar-toggler {
  height: 42px;
  position: relative;
  width: 42px;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  height: 18px;
  position: relative;
  width: 24px;
}

.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  border-top: 2px solid var(--color-white);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  left: 0;
  position: absolute;
  width: 24px;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: 7px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-top-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(1px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero-section {
  min-height: 690px;
  overflow: hidden;
  padding: 194px 0 118px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.38) 100%),
    var(--hero-background-image, none) center 32% / cover no-repeat;
}

.hero-section::after {
  background: #E5EEEA;
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  transform: none;
  width: 100%;
  z-index: 0;
}

.hero-content {
  margin-left: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 14px;
}

.hero-title-emphasis {
  display: block;
  font-size: 70px;
  line-height: 80px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 24px;
  max-width: 720px;
  margin-bottom: 34px;
  text-align: left;
}

.hero-stats {
  align-items: flex-start;
  display: flex;
  gap: 58px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
  width: 100%;
}

.hero-stat {
  min-width: 112px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  line-height: 16px;
  margin-top: 7px;
  text-transform: uppercase;
}

.star-row {
  color: #F9C432;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 7px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.rating-stat span {
  margin-top: 5px;
}

/* Treatments */
.treatments-section {
  background: #0358351A;
  margin-top: 0;
  padding: 72px 0 118px;
  position: relative;
  z-index: 2;
}

.treatments-section::after {
  background: #E5EEEA;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  bottom: -82px;
  content: "";
  height: 164px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 140%;
  z-index: 0;
}

.treatments-section .container {
  max-width: 1024px;
  position: relative;
  z-index: 1;
}

.treatments-section .section-heading {
  margin-bottom: 36px;
  max-width: 650px;
}

.treatments-section .section-heading h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 9px;
  text-align: center;
  text-transform: uppercase;
}

.treatments-section .section-heading p {
  color: #666;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0 auto;
  max-width: 760px;
}

.treatment-card {
  background: var(--color-white);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(3, 88, 53, 0.10);
  display: flex;
  flex-direction: column;
  min-height: 464px;
  padding: 30px 26px 26px;
}

.treatment-card h3 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.service-list {
  margin-bottom: 0;
}

.service-list li {
  align-items: flex-start;
  border-top: 0;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 0 0 21px;
}

.service-list span {
  color: #666;
  display: block;
  flex: 1 1 auto;
  font-family: "Myriad Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.service-list span b {
  color: #333;
  display: block;
  font-family: Optima !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 6px;
}

.service-list strong {
  color: var(--color-primary);
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-top: 0;
}

.treatments-actions {
  margin-top: 46px;
}

.treatment-card__actions {
  margin-top: auto;
  padding-top: 6px;
  text-align: center;
}

.why-choose-section {
  background: var(--color-white);
}

.why-choose-card {
  background: var(--color-white);
  border: 1px solid rgba(3, 88, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(3, 88, 53, 0.08);
  padding: 28px 24px;
  text-align: center;
}

.why-choose-icon {
  display: block;
  height: 54px;
  margin: 0 auto 18px;
  object-fit: contain;
  width: 54px;
}

.why-choose-card p {
  margin-bottom: 0;
}

/* Royalty */
.royalty-section {
  background: var(--royalty-background-image, none) center / cover no-repeat;
  margin-top: -1px;
  min-height: 560px;
  overflow: hidden;
  padding: 188px 0 148px;
  position: relative;
}

.royalty-section::after {
  background: url("../images/leaf-right.png") center / contain no-repeat;
  content: "";
  height: 315px;
  opacity: 0.88;
  position: absolute;
  right: -54px;
  top: 30px;
  width: 245px;
  pointer-events: none;
  z-index: 0;
}

.royalty-content {
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.royalty-content h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
}

.royalty-content p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0 auto;
  max-width: 705px;
  text-align: center;
}

.royalty-actions {
  margin-top: 26px;
}

.rounded-img {
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.royalty-section p,
.about-section p,
.hiring-section p,
.franchise-section p,
.section-heading p {
  font-size: 16px;
  line-height: 24px;
}

/* Awards */
.awards-section {
  background: var(--color-white);
  padding: 50px 0 42px;
  position: relative;
  z-index: 3;
}

.awards-section::before {
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 164px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -82px;
  transform: translateX(-50%);
  width: 140%;
  z-index: 0;
}

.awards-section .container {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.awards-section h3 {
  color: #333;
  font-family: Optima;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.awards-section .row {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
}

.awards-section .row > [class*="col"] {
  flex: 0 0 190px;
  max-width: 190px;
}

.award-card {
  align-items: center;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 132px;
  justify-content: center;
  padding: 16px 18px;
}

.award-card img {
  max-height: 88px;
  max-width: 138px;
  object-fit: contain;
}

.award-learn-more {
  color: var(--color-dark);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Gallery */
.gallery-section {
  background: var(--color-white);
  position: relative;
  z-index: 2;
}

.gallery-section::after {
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  bottom: -78px;
  content: "";
  height: 156px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 140%;
  z-index: 0;
}

.gallery-section .container-fluid {
  position: relative;
  z-index: 1;
}

.gallery-slider {
  padding: 0;
  position: relative;
}

.gallery-actions {
  margin-top: 54px;
}

.btn-gallery-primary {
  background: linear-gradient(90deg, #EDC967 16.6%, #FFCC43 41.62%, #EDC14D 66.64%, #EDC967 95.83%);
  border-color: transparent;
  color: #3D3D3D;
}

.btn-gallery-primary:hover,
.btn-gallery-primary:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  --gallery-slide-width: calc((100% - 90px) / 4);
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 var(--gallery-slide-width);
  min-width: 0;
}

.gallery-slide img {
  border-radius: 16px;
  display: block;
  height: 499px;
  object-fit: cover;
  width: 100%;
}

.gallery-control {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  height: 54px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  z-index: 2;
}

.gallery-control img {
  display: block;
  height: 54px;
  width: 54px;
}

.gallery-control-prev {
  left: 24px;
}

.gallery-control-next {
  right: 24px;
}

@media (min-width: 992px) {
  .gallery-control-prev {
    left: 100px;
  }

  .gallery-control-next {
    right: 100px;
  }
}

/* About */
.about-section {
  background: var(--color-white);
  padding: 108px 0 152px;
  position: relative;
  z-index: 2;
}

.about-section .container {
  max-width: 1040px;
  position: relative;
  z-index: 1;
}

.about-collage {
  min-height: 410px;
  position: relative;
}

.about-collage::before {
  background: url("../images/circle-shade.png") center / contain no-repeat;
  content: "";
  height: 100px;
  left: -40px;
  pointer-events: none;
  position: absolute;
  top: 117px;
  width: 100px;
  z-index: 0;
}

.about-collage::after {
  background: url("../images/Dot-Grid.png") center / contain no-repeat;
  content: "";
  height: 86px;
  left: 42%;
  pointer-events: none;
  position: absolute;
  top: 346px;
  width: 86px;
  z-index: 0;
}

.about-main {
  border-radius: 16px;
  display: block;
  height: 385px;
  margin-left: auto;
  object-fit: cover;
  position: relative;
  width: 72%;
  z-index: 1;
}

.about-small {
  border: 6px solid var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  height: 255px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 158px;
  width: 52%;
  z-index: 1;
}

.about-section h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-section p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
  max-width: 560px;
  text-align: left;
}

/* Testimonials */
.testimonials-section {
  background: #0358351A;
  margin-top: -1px;
  padding: 132px 0 96px;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  max-width: 1180px;
}

.testimonials-header h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
}

.testimonials-header p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  max-width: 720px;
  text-align: left;
}

.testimonials-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
}

.testimonials-actions span {
  color: #666;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.review-rating-summary {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 42px;
  max-width: 1180px;
}

.review-rating-item {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: 0;
  text-align: left;
}

.review-rating-item strong {
  color: #333;
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.review-rating-copy {
  display: block;
}

.review-rating-stars {
  color: #f3b438;
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 0 6px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.review-rating-copy > span:not(.review-rating-stars),
.review-rating-copy small {
  color: #666;
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.reviews-slider {
  cursor: grab;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.reviews-slider.is-dragging {
  cursor: grabbing;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 28px;
  transform: translateX(-64px);
  transition: transform 0.35s ease;
  will-change: transform;
  width: max-content;
}

.review-card {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(3, 88, 53, 0.12);
  flex: 0 0 366px;
  min-height: 302px;
  padding: 28px 26px 30px;
}

.review-head {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr 22px;
  margin-bottom: 22px;
}

.review-avatar {
  align-items: center;
  background: #8b22ca;
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.google-mark {
  align-items: center;
  color: #4285f4;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.review-stars {
  color: #f3b438;
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 22px;
}

.review-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 2px;
  text-transform: none;
}

.review-head span {
  color: #999;
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.review-card p {
  color: #555;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: left;
}

/* Hiring / Franchise */
.hiring-section,
.franchise-section {
  background: var(--color-white);
}

.hiring-section {
  padding: 108px 0 92px;
}

.hiring-section .container {
  max-width: 1180px;
}

.hiring-row {
  --bs-gutter-x: 78px;
}

.hiring-copy h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hiring-copy p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
  max-width: 560px;
  text-align: left;
}

.resume-upload {
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgba(3, 88, 53, 0.16);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(3, 88, 53, 0.06);
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  max-width: 430px;
  padding: 14px 18px;
  text-decoration: none;
}

.resume-upload:hover,
.resume-upload:focus {
  text-decoration: none;
}

.resume-icon {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 22px;
  justify-content: center;
  width: 27px;
}

.resume-icon img {
  display: block;
  height: auto;
  width: 100%;
}

.resume-upload strong {
  color: #666;
  display: block;
  font-family: "Myriad Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.resume-upload small {
  color: #666;
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
}

.hiring-media img {
  border-radius: 16px;
  display: block;
  height: 470px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.franchise-section {
  padding: 56px 0 124px;
}

.franchise-section .container {
  max-width: 1180px;
}

.franchise-row {
  --bs-gutter-x: 78px;
}

.franchise-media img {
  border-radius: 16px;
  display: block;
  height: 470px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.franchise-copy h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.franchise-copy p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 22px;
  max-width: 570px;
  text-align: left;
}

.franchise-list {
  margin: 0 0 26px;
  max-width: 590px;
}

.franchise-list li {
  color: #666;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.franchise-list li::before {
  background: url("../images/check-Icon.svg") center / contain no-repeat;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 20px;
}

.franchise-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.franchise-actions .btn {
  font-family: "Myriad Pro";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 20px;
  min-width: 166px;
  padding-left: 22px;
  padding-right: 22px;
  text-align: center;
  text-transform: lowercase;
}

.franchise-actions .btn-primary-green {
  min-width: 292px;
}

.contact-section {
  background: #0358351A;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(3, 88, 53, 0.12);
  margin: 0 auto;
  max-width: 760px;
  padding: 34px;
}

.check-list {
  margin: 20px 0 24px;
}

.check-list li {
  color: var(--color-dark);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
  content: "✓";
  font-size: 10px;
  height: 18px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 3px;
  width: 18px;
}

/* Footer */
.site-footer {
  background: #f4faf4;
  color: var(--color-body);
}

.footer-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%),
    url("../images/footer-bg.png") center / cover no-repeat;
  padding: 62px 0 0;
}

.footer-content .container {
  max-width: 1206px;
}

.footer-main {
  display: grid;
  gap: 0;
  grid-template-columns: 261px 190px 195px 203px;
  justify-content: space-between;
  padding-bottom: 56px;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo {
  height: 96px;
  margin-bottom: 0;
  object-fit: contain;
  width: 96px;
}

.footer-brand p {
  color: #666;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  max-width: 270px;
  text-align: left;
}

.site-footer h3 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links {
  column-gap: 40px;
  columns: 2;
}

.footer-links li,
.footer-contact li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact,
.footer-contact a {
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}

.footer-contact-location,
.footer-contact-item {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.footer-contact-location img,
.footer-contact-item img {
  flex: 0 0 18px;
  height: 18px;
  margin-top: 1px;
  width: 18px;
}

.footer-contact-location span,
.footer-contact-item a {
  display: block;
}

.footer-contact-hours {
  display: grid;
  gap: 0;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: 86px max-content;
  padding: 8px 0;
  position: relative;
}

.footer-hours-row::after {
  background: #00000066;
  content: "";
  height: 0.1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-hours-row strong,
.footer-hours-row small {
  color: var(--color-body);
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}

.footer-hours-row strong {
  font-weight: 400;
}

.footer-hours-row small {
  font-weight: 400;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--color-primary);
}

.footer-bottom {
  align-items: center;
  color: #666;
  display: flex;
  font-family: "Myriad Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: space-between;
  line-height: 26px;
  padding: 22px 0;
  position: relative;
}

.footer-bottom::before {
  background: rgba(3, 88, 53, 0.14);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

.footer-bottom a {
  color: #666;
}

.footer-legal-links a {
  margin-left: 34px;
}

/* Promotion Popup */
.promotion-popup[hidden] {
  display: none;
}

.promotion-popup {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1055;
}

.promotion-popup__backdrop {
  background: rgba(0, 0, 0, 0.58);
  inset: 0;
  position: absolute;
}

.promotion-popup__dialog {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  max-height: calc(100vh - 48px);
  max-width: 860px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.promotion-popup__close {
  align-items: center;
  background: var(--color-white);
  border: 0;
  border-radius: 50%;
  color: var(--color-dark);
  display: flex;
  font-size: 30px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  z-index: 2;
}

.promotion-popup__close:focus {
  outline: none;
}

.promotion-popup__media {
  background: var(--color-mint);
  min-height: 100%;
}

.promotion-popup__image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.promotion-popup__content {
  align-self: center;
  padding: 56px 46px 46px;
  text-align: left;
}

.promotion-popup__content h2 {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 14px;
  text-align: left;
}

.promotion-popup__copy {
  color: #666;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.promotion-popup__copy p,
.promotion-popup__copy ul,
.promotion-popup__copy ol {
  text-align: left !important;
}

.promotion-popup__copy * {
  text-align: left !important;
}

.promotion-popup__copy p:last-child {
  margin-bottom: 0;
}

.promotion-popup__cta {
  min-width: 170px;
}

body.promotion-popup-open {
  overflow: hidden;
}

/* Service Booking Modal */
.service-booking-modal[hidden] {
  display: none;
}

.service-booking-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 10000;
}

.service-booking-modal__backdrop {
  background: rgba(0, 0, 0, 0.62);
  inset: 0;
  position: absolute;
}

.service-booking-modal__dialog {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  height: min(760px, calc(100vh - 48px));
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: min(100%, 980px);
  z-index: 1;
}

.service-booking-modal__header {
  align-items: center;
  border-bottom: 1px solid rgba(3, 88, 53, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 22px;
}

.service-booking-modal__header h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.service-booking-modal__close {
  align-items: center;
  background: rgba(3, 88, 53, 0.08);
  border: 0;
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  flex: 0 0 auto;
  font-size: 30px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  width: 42px;
}

.service-booking-modal__close:hover,
.service-booking-modal__close:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-booking-modal__body {
  flex: 1 1 auto;
  min-height: 500px;
  overflow: hidden;
}

.service-booking-modal__body iframe {
  display: block;
}

.service-booking-modal__loading,
.service-booking-modal__error {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 16px;
  height: 100%;
  justify-content: center;
  min-height: 500px;
  padding: 24px;
  text-align: center;
}

.service-booking-modal__fallback {
  border-top: 1px solid rgba(3, 88, 53, 0.12);
  color: var(--color-primary);
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  text-align: center;
  text-decoration: none;
}

.service-booking-modal__fallback:hover,
.service-booking-modal__fallback:focus {
  color: var(--color-dark);
}

body.service-booking-modal-open {
  overflow: hidden;
}

/* Job Application Modal */
.job-application-modal[hidden] {
  display: none;
}

.job-application-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.job-application-modal__backdrop {
  background: rgba(0, 0, 0, 0.56);
  inset: 0;
  position: absolute;
}

.job-application-modal__dialog {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 0px 40px -10px #03583526;
  max-height: calc(100vh - 48px);
  max-width: 720px;
  overflow-y: auto;
  padding: 42px;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}

.job-application-modal__close {
  align-items: center;
  background: rgba(3, 88, 53, 0.08);
  border: 0;
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
}

.job-application-modal__close:hover,
.job-application-modal__close:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.job-application-modal h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 54px 28px 0;
  text-align: left;
  text-transform: uppercase;
}

body.job-application-modal-open {
  overflow: hidden;
}

/* FAQ Page */
.faq-page {
  background: var(--color-white);
}

.faq-hero {
  align-items: center;
  background: var(--faq-hero-image, url("../images/faq-banner.jpg")) center 48% / cover no-repeat;
  display: flex;
  height: 534px;
  min-height: 534px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.faq-hero::after {
  background: var(--color-white);
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  width: 100%;
}

.faq-hero__content {
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.faq-hero h1 {
  color: var(--color-white);
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.faq-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
  max-width: 680px;
}

.faq-section {
  background: var(--color-white);
  padding: 72px 0 96px;
}

.faq-section .container {
  max-width: 1010px;
}

.faq-page__intro {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.faq-section__heading {
  margin: 0 auto 44px;
  max-width: 760px;
  text-align: center;
}

.faq-section__heading h2 {
  color: #333;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 10px;
}

.faq-section__heading p {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto;
  max-width: 700px;
}

.faq-category-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 42px;
}

.faq-category-nav button {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1;
  min-height: 46px;
  padding: 13px 22px 12px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.faq-category-nav button:hover,
.faq-category-nav button:focus-visible,
.faq-category-nav button[aria-selected="true"] {
  background: #333;
  border-color: #333;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  color: var(--color-white);
}

.faq-category-list {
  display: grid;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, margin 0.25s ease;
}

.faq-item[open] {
  background: var(--color-white);
  border-bottom-color: transparent;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin: 12px 0;
}

.faq-question {
  align-items: center;
  color: #333;
  cursor: pointer;
  display: flex;
  font-family: var(--font-heading);
  font-size: 18px;
  gap: 20px;
  justify-content: space-between;
  line-height: 28px;
  list-style: none;
  padding: 25px 18px;
  text-transform: uppercase;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  flex: 0 0 18px;
  height: 18px;
  position: relative;
  width: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  background: #000;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::before {
  height: 2px;
  width: 14px;
}

.faq-toggle::after {
  height: 14px;
  transition: opacity 0.2s ease, transform 0.25s ease;
  width: 2px;
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  border-top: 0;
  color: #666;
  font-size: 16px;
  display: grid;
  grid-template-rows: 0fr;
  line-height: 26px;
  opacity: 0;
  padding: 0 18px;
  transition: grid-template-rows 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer p {
  text-align: left;
}

/* Terms Of Services Page */
.terms-page {
  background: var(--color-white);
}

.terms-content-section {
  padding: 193px 0 84px;
}

.terms-content-section .container {
  max-width: 1206px;
}

.terms-content {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.terms-content h1 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 8px;
  text-align: left;
  text-transform: uppercase;
}

.terms-effective-date,
.terms-copy h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 14px;
  text-align: left;
  text-transform: uppercase;
}

.terms-copy {
  margin-bottom: 32px;
  text-align: left;
}

.terms-copy p {
  margin: 0 0 18px;
  text-align: left;
}

.terms-copy p:last-child {
  margin-bottom: 0;
}

.terms-copy h2 {
  margin-top: 42px;
}

.terms-copy ul {
  display: grid;
  gap: 17px;
  list-style: none;
  margin: 30px 0 34px;
  padding: 0;
}

.terms-copy li {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  min-height: 26px;
  padding-left: 25px;
  position: relative;
  text-align: left;
}

.terms-copy li::before {
  background: url("../images/check-icon-grn.svg") center / contain no-repeat;
  content: "";
  display: block;
  height: 14px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 14px;
}

.terms-callout {
  background: rgba(3, 88, 53, 0.10);
  margin: 42px calc(50% - 50vw);
  padding: 44px calc(50vw - 50%);
}

.terms-callout h2:first-child {
  margin-top: 0;
}

/* Services Archive */
.services-page {
  background: var(--color-white);
}

.services-hero {
  align-items: center;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.10)),
    var(--services-hero-image, url("../images/services-hero.png")) center / cover no-repeat;
  display: flex;
  height: 534px;
  min-height: 534px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.services-hero::after {
  background: var(--color-white);
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  width: 100%;
}

.services-hero .container {
  position: relative;
  text-align: center;
  z-index: 1;
}

.services-hero h1 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
  margin: 0;
  text-transform: uppercase;
}

.services-archive-section {
  padding: 72px 0 96px;
}

.services-archive-section .container {
  max-width: 1206px;
}

.services-archive-grid {
  display: grid;
  gap: 40px 25px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.services-archive-card {
  background: var(--color-white);
  border: 0.2px solid rgba(3, 88, 53, 0.22);
  border-radius: 20px;
  overflow: hidden;
}

.services-archive-card:nth-last-child(2):nth-child(3n+1) {
  grid-column: 1 / 2;
  transform: translateX(calc(50% + 12.5px));
}

/* Buy Products */
.buy-products-page {
  background: var(--color-white);
}

.buy-products-hero {
  align-items: center;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.14)),
    url("../images/buy-product-banner.jpg") center 43% / cover no-repeat;
  display: flex;
  height: 534px;
  min-height: 534px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.buy-products-hero::after {
  background: var(--color-white);
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  width: 100%;
}

.buy-products-hero .container {
  position: relative;
  text-align: center;
  z-index: 1;
}

.buy-products-hero h1 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
  margin: 0;
  text-transform: uppercase;
}

.buy-products-shop {
  padding: 72px 0 78px;
}

.buy-products-shop .container {
  max-width: 1206px;
}

.buy-products-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 283px minmax(0, 1fr);
}

.buy-products-filter {
  position: sticky;
  top: 166px;
}

.buy-products-filter__panel {
  background: var(--color-white);
  border-radius: 2px;
  box-shadow: 0 0 40px -10px rgba(3, 88, 53, 0.15);
  min-height: 300px;
  padding: 31px 24px 27px;
}

.buy-products-filter__title {
  color: #333;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  letter-spacing: 0;
  margin-bottom: 24px;
  padding-bottom: 7px;
  position: relative;
  text-transform: uppercase;
  vertical-align: middle;
}

.buy-products-filter__title::after {
  background: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 48px;
}

.buy-products-filter__form {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}

.buy-products-filter__group {
  border: 0;
  margin-bottom: 22px;
}

.buy-products-filter__group summary {
  align-items: center;
  border-bottom: 1px solid #E3E3E3;
  color: #333;
  cursor: pointer;
  display: flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  justify-content: space-between;
  line-height: 1;
  letter-spacing: 0;
  list-style: none;
  min-height: 32px;
  padding: 0 0 14px;
  text-transform: uppercase;
  vertical-align: middle;
}

.buy-products-filter__group summary::-webkit-details-marker {
  display: none;
}

.buy-products-filter__group summary::after {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0;
  content: "";
  flex: 0 0 auto;
  margin-left: 12px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.buy-products-filter__group[open] summary::after {
  transform: rotate(180deg);
}

.buy-products-filter__options {
  display: grid;
  gap: 12px;
  padding: 16px 0 2px;
}

.buy-products-filter__option {
  align-items: center;
  color: #666;
  cursor: pointer;
  display: grid;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  column-gap: 8px;
  grid-template-columns: 18px minmax(0, 1fr) 50px;
  line-height: 26px;
  letter-spacing: 0;
  min-height: 26px;
}

.buy-products-filter__option input {
  appearance: none;
  background: var(--color-white);
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  height: 13px;
  margin: 0;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
  width: 13px;
}

.buy-products-filter__option input:checked {
  background: #fff;
  border-color: var(--color-primary);
}

.buy-products-filter__option input:checked::after {
  border: solid #035835;
  border-width: 0 1.5px 1.5px 0;
  content: "";
  height: 7px;
  left: 4px;
  position: absolute;
  top: 1px;
  transform: rotate(45deg);
  width: 4px;
}

.buy-products-filter__option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buy-products-filter__option small {
  align-items: center;
  background: rgba(3, 88, 53, 0.10);
  border-radius: 20px;
  color: #676767;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  height: 21px;
  justify-content: center;
  justify-self: end;
  line-height: 21px;
  min-width: 50px;
  padding: 0 10px;
}

.buy-products-filter__clear,
.buy-products-load-more {
  align-items: center;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-white);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1.4px;
  line-height: 20px;
  min-height: 44px;
  padding: 12px 26px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.buy-products-filter__clear {
  font-family: var(--font-body);
  font-size: 17px !important;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.4px;
  line-height: 20px !important;
  margin-top: 2px;
  min-height: 38px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.buy-products-filter__clear:hover,
.buy-products-filter__clear:focus,
.buy-products-load-more:hover,
.buy-products-load-more:focus {
  background: #02462b;
  border-color: #02462b;
  color: var(--color-white);
  transform: translateY(-1px);
}

.buy-products-load-more:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.buy-products-toolbar {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.buy-products-toolbar label {
  color: #333;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 10px;
  text-transform: uppercase;
  vertical-align: middle;
}

.buy-products-sort {
  appearance: none;
  background: var(--color-white);
  border: 1px solid rgba(3, 88, 53, 0.45);
  border-radius: 5px;
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  height: 36px;
  line-height: 26px;
  letter-spacing: 0;
  min-width: 151px;
  padding: 0 32px 0 14px;
}

.buy-products-sort-wrap {
  display: inline-flex;
  position: relative;
}

.buy-products-sort-wrap::after {
  background: url("../images/down-arw.svg") center / contain no-repeat;
  content: "";
  height: 6px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}

.buy-products-grid-wrap {
  min-height: 1322px;
  position: relative;
}

.buy-products-grid {
  display: grid;
  gap: 46px 24px;
  grid-template-columns: repeat(3, minmax(0, 283px));
  justify-content: end;
  transition: opacity 0.2s ease;
}

.buy-products-shop.is-loading .buy-products-grid {
  opacity: 0.45;
}

.buy-product-card {
  text-align: center;
}

.buy-product-card__media {
  align-items: center;
  background: rgba(3, 88, 53, 0.04);
  border-radius: 20px;
  display: flex;
  height: 346px;
  justify-content: center;
  overflow: hidden;
  padding: 38px 40px;
  position: relative;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  width: 283px;
}

.buy-product-card__media:hover,
.buy-product-card__media:focus {
  background: var(--color-white);
  box-shadow: 0px 0px 40px -10px #03583526;
  transform: translateY(-2px);
}

.buy-product-card__media img {
  display: block;
  height: 100%;
  max-height: 266px;
  object-fit: contain;
  width: 100%;
}

.buy-product-card__badge {
  background: var(--color-primary);
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 7px 10px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
  top: 16px;
}

.buy-product-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin: 17px auto 4px;
  max-width: 222px;
  min-height: 42px;
  text-align: center;
  text-transform: none;
}

.buy-product-card__title a {
  color: #333;
}

.buy-product-card__title a:hover,
.buy-product-card__title a:focus {
  color: var(--color-primary);
}

.buy-product-card__price,
.buy-product-card__price .amount {
  color: #333;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.buy-product-card__price del {
  color: #888;
  margin-right: 6px;
  opacity: 0.7;
}

.buy-product-card__price ins {
  text-decoration: none;
}

.buy-products-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.buy-products-empty {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 42px auto;
  max-width: 520px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .buy-products-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .buy-products-grid {
    gap: 40px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .buy-products-grid-wrap {
    min-height: 0;
  }

  .buy-product-card__media {
    aspect-ratio: 283 / 346;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .buy-products-layout {
    grid-template-columns: 1fr;
  }

  .buy-products-filter {
    position: static;
  }

  .buy-products-filter__panel {
    min-height: 0;
  }

  .buy-products-filter__form {
    display: grid;
    gap: 0 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .buy-products-filter__group summary {
    font-size: 16px;
  }

  .buy-products-filter__clear {
    grid-column: 1 / -1;
    max-width: 233px;
  }

  .buy-products-toolbar {
    margin-top: 22px;
  }

  .buy-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .buy-products-hero {
    height: auto;
    min-height: 330px;
    padding: 146px 0 74px;
  }

  .buy-products-hero::after {
    height: 64px;
  }

  .buy-products-hero h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .buy-products-shop {
    padding: 48px 0;
  }

  .buy-products-filter__form {
    grid-template-columns: 1fr;
  }

  .buy-products-toolbar {
    justify-content: flex-start;
  }

  .buy-products-grid {
    gap: 26px;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .buy-product-card__title {
    margin-top: 12px;
    min-height: 0;
  }

  .buy-products-actions {
    margin-top: 28px;
  }

  .buy-product-card__media {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    padding: 24px;
    width: 100%;
  }

  .buy-product-card__media img {
    height: auto;
    max-height: 230px;
  }

  .buy-products-grid-wrap {
    min-height: 0;
  }
}

@media (max-width: 359.98px) {
  .buy-product-card__media {
    height: 330px;
    width: 100%;
  }
}

/* Product Details */
.single-product .site-header {
  background: transparent;
}

.single-product .navbar,
.single-product .site-header.is-scrolled .navbar {
  background: #333;
  border-color: rgba(255, 255, 255, 0.10);
}

.product-detail-page {
  background: var(--color-white);
}

.product-detail-page .container {
  max-width: 1206px;
}

.product-detail-hero {
  padding: 237px 0 92px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 579px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}

.product-detail-thumbs {
  display: grid;
  gap: 18px;
}

.product-detail-thumb {
  align-items: center;
  background: rgba(3, 88, 53, 0.04);
  border: 0;
  border-radius: 15px;
  display: flex;
  height: 117px;
  justify-content: center;
  padding: 18px 20px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  width: 110px;
}

.product-detail-thumb.is-active,
.product-detail-thumb:hover,
.product-detail-thumb:focus {
  background: var(--color-white);
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
}

.product-detail-thumb img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-detail-main-image {
  align-items: center;
  background: rgba(3, 88, 53, 0.04);
  border-radius: 20px;
  display: flex;
  height: 626px;
  justify-content: center;
  overflow: hidden;
  padding: 54px 60px;
}

.product-detail-main-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-detail-summary {
  padding-top: 44px;
}

.product-detail-summary h1 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 12px;
  max-width: 100%;
  text-transform: uppercase;
}

.product-detail-price,
.product-detail-price .amount {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.product-detail-price {
  margin-bottom: 18px;
}

.product-detail-price del {
  color: #888;
  margin-right: 8px;
  opacity: 0.7;
}

.product-detail-price ins {
  text-decoration: none;
}

.product-detail-excerpt {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 22px;
  max-width: 100%;
  text-align: left;
}

.product-detail-excerpt p,
.product-detail-excerpt ul,
.product-detail-excerpt ol {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 12px;
  text-align: left;
}

.product-detail-excerpt p:last-child,
.product-detail-excerpt ul:last-child,
.product-detail-excerpt ol:last-child {
  margin-bottom: 0;
}

.product-detail-excerpt ul,
.product-detail-excerpt ol {
  list-style: none;
  padding-left: 0;
}

.product-detail-excerpt li {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  padding-left: 27px;
  position: relative;
}

.product-detail-excerpt li::before {
  background: url("../images/check-icon-grn.svg") center / contain no-repeat;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 18px;
}

.product-detail-excerpt li:last-child {
  margin-bottom: 0;
}

.product-detail-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-detail-checklist li {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  padding-left: 28px;
  position: relative;
}

.product-detail-checklist li::before {
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
  content: "✓";
  display: flex;
  font-size: 10px;
  height: 14px;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 6px;
  width: 14px;
}

.product-detail-quote {
  align-items: center;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-white);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1.4px;
  line-height: 20px;
  margin-top: 28px;
  min-height: 44px;
  min-width: 220px;
  padding: 12px 28px;
  text-align: center;
  text-transform: uppercase;
}

.product-detail-quote:hover,
.product-detail-quote:focus {
  background: #02462b;
  color: var(--color-white);
}

body.product-quote-modal-open {
  overflow: hidden;
}

.product-quote-modal[hidden] {
  display: none;
}

.product-quote-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.product-quote-modal__overlay {
  background: rgba(0, 0, 0, 0.52);
  inset: 0;
  position: absolute;
}

.product-quote-modal__dialog {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 0px 40px -10px #03583526;
  max-height: calc(100vh - 48px);
  max-width: 720px;
  overflow-y: auto;
  padding: 42px;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}

.product-quote-modal__close {
  align-items: center;
  background: rgba(3, 88, 53, 0.08);
  border: 0;
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
}

.product-quote-modal h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 54px 28px 0;
  text-align: left;
  text-transform: uppercase;
}

.bamboo-product-quote-gravity-form .gform_wrapper.gravity-theme {
  margin: 0;
}

.bamboo-product-quote-gravity-form .gform_wrapper.gravity-theme .gform_fields {
  gap: 18px 20px;
}

.bamboo-product-quote-gravity-form .gform_wrapper.gravity-theme .gfield_visibility_hidden {
  display: none;
}

.product-detail-info {
  padding: 0 0 84px;
}

.product-detail-tabs {
  align-items: flex-end;
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  gap: 68px;
  height: 58px;
  position: relative;
}

.product-detail-tabs button {
  background: transparent;
  border: 0;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 0 32px 23px 33px;
  position: relative;
  text-transform: uppercase;
}

.product-detail-tabs button.is-active::after {
  background: var(--color-primary);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 200px;
}

.product-detail-info-body {
  padding-top: 28px;
}

.product-detail-info-body[hidden] {
  display: none;
}

.product-detail-info-body h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 16px;
  text-align: left;
  text-transform: uppercase;
}

.product-detail-info-body p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 20px;
  text-align: left;
}

.product-detail-rich-content ul,
.product-detail-rich-content ol {
  list-style: none;
  margin: 0 0 20px;
  padding-left: 0;
}

.product-detail-rich-content li {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.product-detail-rich-content li::before {
  background: url("../images/check-icon-grn.svg") center / contain no-repeat;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 18px;
}

.product-detail-rich-content li:last-child {
  margin-bottom: 0;
}

.product-detail-checklist--wide {
  max-width: 640px;
}

.product-detail-related {
  padding: 0 0 102px;
}

.product-detail-related__decor {
  border-bottom: 1px solid #E3E3E3;
  height: 16px;
  margin-bottom: 80px;
  position: relative;
}

.product-detail-related__decor::before,
.product-detail-related__decor::after {
  background: var(--color-white);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  content: "";
  height: 12px;
  position: absolute;
  top: 10px;
  width: 12px;
}

.product-detail-related__decor::before {
  left: 0;
}

.product-detail-related__decor::after {
  right: 0;
}

.product-detail-related__heading {
  margin: 0 auto 42px;
  max-width: 768px;
  text-align: center;
}

.product-detail-related__heading h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 5px;
  text-align: center;
  text-transform: uppercase;
}

.product-detail-related__heading p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto;
  max-width: 672px;
  text-align: center;
}

.product-detail-related__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-detail-related__grid .buy-product-card__media {
  width: 100%;
}

/* 404 */
.bamboo-404 {
  align-items: center;
  background: #f4faf4;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 48px 18px;
  position: relative;
}

.bamboo-404__bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, #FFFFFF 100%),
    url("../images/footer-bg.png") center / cover no-repeat;
  inset: 0;
  opacity: 0.9;
  position: absolute;
}

.bamboo-404__panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(3, 88, 53, 0.10);
  border-radius: 20px;
  box-shadow: 0px 0px 40px -10px #03583526;
  margin: 0 auto;
  max-width: 720px;
  padding: 56px 44px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.bamboo-404__logo {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  height: 104px;
  justify-content: center;
  margin-bottom: 24px;
  width: 104px;
}

.bamboo-404__logo img {
  display: block;
  height: 96px;
  object-fit: contain;
  width: 96px;
}

.bamboo-404__eyebrow {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 20px;
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
}

.bamboo-404 h1 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 108px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.bamboo-404__copy {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto 28px;
  max-width: 460px;
  text-align: center;
}

.bamboo-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .bamboo-404__panel {
    border-radius: 16px;
    padding: 42px 22px;
  }

  .bamboo-404 h1 {
    font-size: 78px;
  }
}

@media (max-width: 1199.98px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    grid-template-columns: 110px minmax(0, 1fr);
    max-width: 720px;
  }

  .product-detail-summary {
    padding-top: 0;
  }

  .product-detail-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .product-detail-hero {
    padding: 120px 0 56px;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
  }

  .product-detail-thumbs {
    display: flex;
    gap: 12px;
    order: 2;
    overflow-x: auto;
  }

  .product-detail-thumb {
    flex: 0 0 82px;
    height: 88px;
    padding: 14px;
    width: 82px;
  }

  .product-detail-main-image {
    height: 350px;
    min-height: 250px;
    padding: 34px;
  }

  .product-detail-summary h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .product-detail-tabs {
    gap: 20px;
    overflow-x: auto;
  }

  .product-detail-tabs button {
    padding-left: 0;
    padding-right: 26px;
  }

  .product-detail-tabs button.is-active::after {
    width: 160px;
  }

  .product-detail-info {
    padding-bottom: 58px;
  }

  .product-detail-related {
    padding-bottom: 72px;
  }

  .product-detail-related__decor {
    margin-bottom: 54px;
  }

  .product-detail-related__heading h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .product-detail-related__grid {
    grid-template-columns: 1fr;
  }

  .product-quote-modal__dialog {
    border-radius: 14px;
    padding: 34px 22px 26px;
  }

  .product-quote-modal h2 {
    font-size: 30px;
    line-height: 36px;
    margin-right: 44px;
  }

  .product-quote-form {
    grid-template-columns: 1fr;
  }
}

.services-archive-card:last-child:nth-child(3n+2) {
  grid-column: 2 / 3;
  transform: translateX(calc(50% + 12.5px));
}

.services-archive-card__image {
  display: block;
  height: 255px;
  overflow: hidden;
}

.services-archive-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.services-archive-card__body {
  padding: 22px 25px 28px;
}

.services-archive-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 15px;
  text-align: left;
  text-transform: uppercase;
}

.services-archive-card h2 a {
  color: #333;
  transition: color 0.2s ease;
}

.services-archive-card p {
  color: #666;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 18px;
  text-align: left;
}

.services-archive-card__link {
  color: #3d3d3d;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 20px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.services-archive-card:hover h2 a,
.services-archive-card:focus-within h2 a,
.services-archive-card:hover .services-archive-card__link,
.services-archive-card:focus-within .services-archive-card__link,
.services-archive-card__link:hover,
.services-archive-card__link:focus {
  color: var(--color-primary);
}

.services-archive-card:hover .services-archive-card__link,
.services-archive-card:focus-within .services-archive-card__link,
.services-archive-card__link:hover,
.services-archive-card__link:focus {
  text-decoration: underline;
}

/* Service Detail */
.service-detail-page {
  background: var(--color-white);
}

.service-detail-hero {
  align-items: center;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08)),
    var(--service-detail-hero-image, url("../images/hair-service-hero.png")) center / cover no-repeat;
  display: flex;
  height: 534px;
  min-height: 534px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.service-detail-hero::after {
  background: var(--color-white);
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  width: 100%;
}

.service-detail-hero .container {
  position: relative;
  text-align: center;
  z-index: 1;
}

.service-detail-hero h1 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
  margin: 0;
  text-transform: uppercase;
}

.service-detail-section {
  padding: 72px 0 105px;
}

.service-detail-section .container {
  max-width: 1206px;
}

.service-detail-grid {
  display: grid;
  gap: 40px 25px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-card {
  background: var(--color-white);
  border: 0.2px solid rgba(3, 88, 53, 0.22);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-detail-card:hover,
.service-detail-card:focus-within {
  border-color: transparent;
  box-shadow: 0 0 40px -10px rgba(3, 88, 53, 0.15);
}

.service-detail-card:nth-last-child(2):nth-child(3n+1) {
  grid-column: 1 / 2;
  transform: translateX(calc(50% + 12.5px));
}

.service-detail-card:last-child:nth-child(3n+2) {
  grid-column: 2 / 3;
  transform: translateX(calc(50% + 12.5px));
}

.service-detail-card__image {
  display: block;
  height: 255px;
  object-fit: cover;
  width: 100%;
}

.service-detail-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 25px 28px;
}

.service-detail-card h2 {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 15px;
  text-align: left;
  text-transform: uppercase;
}

.service-detail-card p {
  color: #666;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 18px;
  text-align: left;
}

.service-detail-card strong {
  color: #035835;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: auto;
  text-transform: initial;
  transition: color 0.2s ease;
}

.service-detail-card:hover strong,
.service-detail-card:focus-within strong {
  color: var(--color-primary);
}

.service-detail-card__booking {
  align-self: flex-start;
  font-size: 14px;
  margin-top: 28px;
  min-height: 40px;
  padding: 10px 22px;
}

/* Contact Page */
.contact-page {
  background: var(--color-white);
}

.contact-hero {
  align-items: center;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18)),
    url("../images/contact-banner.png") center 48% / cover no-repeat;
  display: flex;
  height: 534px;
  min-height: 534px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.contact-hero::after {
  background: var(--color-white);
  bottom: -1px;
  clip-path: polygon(0 28%, 10% 42%, 24% 58%, 39% 70%, 50% 74%, 61% 70%, 76% 58%, 90% 42%, 100% 28%, 100% 100%, 0 100%);
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  width: 100%;
}

.contact-hero__content {
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.contact-hero h1 {
  color: var(--color-white);
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto;
  max-width: 680px;
}

.faq-hero__content,
.services-hero .container,
.buy-products-hero .container,
.service-detail-hero .container,
.contact-hero__content {
  transform: translateY(68px);
}

.faq-hero h1,
.services-hero h1,
.buy-products-hero h1,
.service-detail-hero h1,
.contact-hero h1 {
  margin-bottom: 50px;
}

.contact-page-section {
  padding: 76px 0 100px;
}

.contact-page-heading {
  margin: 0 0 28px;
  max-width: 425px;
  text-align: left;
}

.contact-page-heading h2,
.contact-form-heading h2 {
  color: #333;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 10px;
  text-align: left;
}

.contact-page-heading p,
.contact-form-heading p {
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  max-width: 460px;
  text-align: left;
}

.contact-page-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 502px) minmax(0, 669px);
  margin: 0 auto;
  max-width: 1206px;
}

.contact-form-panel {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.08);
  min-height: 516px;
  padding: 45px 56px 36px 63px;
}

.contact-info-column {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  align-items: center;
  border: 1px solid rgba(3, 88, 53, 0.12);
  border-radius: 20px;
  display: flex;
  gap: 22px;
  min-height: 120px;
  padding: 28px 34px 26px;
}

.contact-info-card--address {
  align-items: flex-start;
  min-height: 146px;
}

.contact-info-card__icon {
  align-items: center;
  background: #DDEEDD;
  border-radius: 50%;
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  margin: 5px 0 0;
  width: 50px;
}

.contact-info-card__icon img {
  display: block;
  height: 22px;
  object-fit: contain;
  padding: 0;
  width: 22px;
}

.contact-info-card__icon--phone img {
  height: 21px;
  width: 21px;
}

.contact-info-card__icon--email img {
  height: 18px;
  width: 22px;
}

.contact-info-card__icon--location img {
  height: 26px;
  width: 22px;
}

.contact-info-card span {
  color: #666;
  display: inline-flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
}

.contact-info-card h3,
.contact-info-card h3 a {
  color: #333;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
  text-transform: none;
}

.contact-form-heading {
  margin-bottom: 22px;
}

.contact-form-heading h2 {
  margin-bottom: 3px;
}

.contact-gravity-form .gform_wrapper.gravity-theme {
  margin: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme form,
.contact-gravity-form .gform_wrapper.gravity-theme .gform-body,
.contact-gravity-form .gform_wrapper.gravity-theme .gform_body {
  margin: 0 !important;
  max-width: 550px;
  width: 100%;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield_label {
  color: #666;
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_fields {
  column-gap: 30px !important;
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  grid-template-rows: auto;
  max-width: 550px;
  row-gap: 29px !important;
  width: 100%;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(1),
.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(2),
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_left_half,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_right_half,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-half {
  grid-column: span 6 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-full {
  grid-column: 1 / -1 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .ginput_container {
  margin: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield_required {
  color: #666;
  font-size: inherit;
  margin-left: 0;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield_required_text {
  display: none;
}

.bamboo-contact-gravity-form .gfield input:not([type="submit"]),
.bamboo-contact-gravity-form .gfield textarea,
.bamboo-contact-gravity-form .gfield select {
  border: none;
  border-bottom: 1px solid #DFDFDF;
  border-radius: 0;
  box-shadow: none;
  color: #666666;
  font-family: "Myriad Pro";
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
  outline: none;
  padding: 12px 0;
  vertical-align: middle;
  height: 60px;
}

.bamboo-contact-gravity-form input[type="submit"] {
  background-color: #035835 !important;
  border-radius: 40px !important;
  font-family: "Myriad Pro" !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 1.4px !important;
  line-height: 20px !important;
  padding: 14px 68px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  vertical-align: middle !important;
}

.bamboo-contact-gravity-form input[type="file"]::file-selector-button {
  background-color: #035835;
  border: 0;
  border-radius: 40px;
  color: var(--color-white);
  cursor: pointer;
  margin-right: 14px;
  padding: 10px 18px;
}

.bamboo-contact-gravity-form input[type="file"]::-webkit-file-upload-button {
  background-color: #035835;
  border: 0;
  border-radius: 40px;
  color: var(--color-white);
  cursor: pointer;
  margin-right: 14px;
  padding: 10px 18px;
}

button#gform_browse_button_3_5 {
  background-color: #035835;
  border-radius: 40px;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload, .gfield--input-type-fileupload, .gfield--type-post_image) .gform_drop_area::before {
  color: #035835 !important;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload, .gfield--input-type-fileupload, .gfield--type-post_image) .ginput_preview .gfield_fileupload_progressbar_progress {
  background-color: #035835;
}

.bamboo-contact-gravity-form .gform_fields {
  column-gap: 30px !important;
  row-gap: 20px !important;
}

.bamboo-contact-gravity-form .gfield textarea {
  height: 90px !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme input[type="text"],
.contact-gravity-form .gform_wrapper.gravity-theme input[type="email"],
.contact-gravity-form .gform_wrapper.gravity-theme input[type="tel"],
.contact-gravity-form .gform_wrapper.gravity-theme input[type="phone"],
.contact-gravity-form .gform_wrapper.gravity-theme textarea,
.contact-gravity-form .gform_wrapper.gravity-theme select {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #333;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  height: 26px;
  min-height: 26px !important;
  outline: none;
  padding: 0 0 12px !important;
  width: 100% !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(1) input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(2) input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_left_half input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_right_half input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-half input {
  max-width: 260px;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(n+3) input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(n+3) textarea,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-full input,
.contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-full textarea {
  max-width: 550px;
}

.contact-gravity-form .gform_wrapper.gravity-theme input[type="text"]:focus,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="email"]:focus,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="tel"]:focus,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="phone"]:focus,
.contact-gravity-form .gform_wrapper.gravity-theme textarea:focus,
.contact-gravity-form .gform_wrapper.gravity-theme select:focus {
  border-bottom-color: var(--color-primary);
}

.contact-gravity-form .gform_wrapper.gravity-theme textarea {
  display: block;
  height: 55px !important;
  min-height: 55px !important;
  resize: vertical;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_footer {
  margin: 37px 0 0 !important;
  padding: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_footer,
.contact-gravity-form .gform_wrapper.gravity-theme .gform_page_footer {
  justify-content: flex-start;
  padding-bottom: 0 !important;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_button,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="submit"],
.contact-gravity-form .gform_wrapper.gravity-theme button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  border-radius: 50px;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 20px;
  height: 49px;
  min-height: 49px;
  min-width: 226px;
  padding: 18px 32px 19px !important;
  text-transform: uppercase;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_button:hover,
.contact-gravity-form .gform_wrapper.gravity-theme .gform_button:focus,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="submit"]:hover,
.contact-gravity-form .gform_wrapper.gravity-theme input[type="submit"]:focus,
.contact-gravity-form .gform_wrapper.gravity-theme button[type="submit"]:hover,
.contact-gravity-form .gform_wrapper.gravity-theme button[type="submit"]:focus {
  background: #02462b;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gform_validation_errors {
  border-color: rgba(3, 88, 53, 0.18);
  border-radius: 12px;
  box-shadow: none;
}

.contact-gravity-form .gform_wrapper.gravity-theme .gfield_validation_message,
.contact-gravity-form .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  border: 0;
  color: #b3261e;
  font-size: 13px;
  margin-top: 6px;
  padding: 0;
}

.contact-map-section {
  background: #F5F6F2;
  height: 629px;
  overflow: hidden;
  width: 100%;
}

.contact-map-image,
.contact-map-embed,
.contact-map-embed iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.contact-map-image {
  object-fit: cover;
}

.contact-map-embed iframe {
  border: 0;
}

/* Thank You Page */
.thank-you-page {
  background: var(--color-white);
}

.thank-you-section {
  align-items: center;
  display: flex;
  min-height: 720px;
  padding: 220px 0 110px;
}

.thank-you-card {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.thank-you-card__icon {
  align-items: center;
  background: #DDEEDD;
  border-radius: 50%;
  display: inline-flex;
  height: 76px;
  justify-content: center;
  margin-bottom: 24px;
  width: 76px;
}

.thank-you-card__icon img {
  display: block;
  height: 32px;
  width: 32px;
}

.thank-you-card h1 {
  color: #333;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.thank-you-card p {
  color: #666;
  font-size: 18px;
  line-height: 28px;
  margin: 0 auto 30px;
  max-width: 620px;
  text-align: center;
}

.thank-you-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .logo-panel {
    width: 100px;
  }

  .services-hero,
  .service-detail-hero {
    background-position: center center, center top;
    background-repeat: no-repeat;
    background-size: auto, cover;
  }

  .royalty-section::after {
    opacity: 0.35;
  }
}

@media (max-width: 991.98px) {
  .contact-page-heading p,
  .contact-form-heading p {
    max-width: 100%;
  }

  .site-header {
    background: transparent;
  }

  .navbar-collapse {
    max-height: calc(100dvh - 146px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 0 24px;
    scrollbar-gutter: stable;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse .navbar-nav {
    align-items: center;
    width: 100%;
  }

  .navbar-collapse .navbar-nav > .nav-item {
    width: 100%;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 14px;
    line-height: 24px;
    padding: 7px 0;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link {
    display: inline-block;
    padding-right: 18px;
  }

  .navbar-dark .navbar-nav .menu-item-has-children > .nav-link::before {
    right: 0;
    transition: transform 0.2s ease;
  }

  .navbar-dark .navbar-nav .menu-item-has-children.is-open > .nav-link::before {
    transform: translateY(-50%) rotate(180deg);
  }

  .navbar-dark .navbar-nav .nav-link::after {
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-nav .dropdown-menu {
    background: rgba(5, 13, 10, 0.38);
    box-shadow: none;
    display: none;
    min-width: 0;
    padding: 7px 0 12px;
    position: static;
    text-align: center;
  }

  .navbar-nav .dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 22px;
    padding: 5px 0;
    text-align: center;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus,
  .navbar-nav .current-menu-item > .dropdown-item {
    background: transparent;
    color: var(--color-white);
  }

  .navbar-book {
    margin-top: 12px;
  }

  .hero-section {
    min-height: 670px;
    padding: 192px 0 108px;
  }

  .hero-content h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .hero-title-emphasis {
    font-size: 60px;
    line-height: 70px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 23px 26px;
    margin-left: 0;
  }

  .treatments-section {
    padding: 50px 0 50px !important;
  }

  .about-section {
    padding: 50px 0 20px;
  }

  h2.text-lg-start {
    text-align: center;
  }

  .gallery-slide {
    flex-basis: var(--gallery-slide-width);
  }

  .gallery-slide img {
    height: 420px;
  }

  .about-collage {
    max-width: 620px;
    margin: 0 auto;
  }

  .about-section h2,
  .about-section p {
    text-align: center;
  }

  .about-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-header {
    align-items: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .testimonials-header h2,
  .testimonials-header p {
    text-align: center;
  }

  .reviews-track {
    transform: translateX(24px);
  }

  .hiring-section {
    padding: 50px 0;
  }

  .hiring-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 42px;
  }

  .hiring-copy h2,
  .hiring-copy p {
    text-align: center;
  }

  .hiring-copy p,
  .resume-upload {
    margin-left: auto;
    margin-right: auto;
  }

  .hiring-copy {
    text-align: center;
  }

  .hiring-media img {
    height: 360px;
  }

  .franchise-section {
    padding: 30px 0 50px;
  }

  .footer-contact-hours {
    display: inline-grid;
  }

  .footer-hours-row::after {
    height: 1.1px;
  }

  .franchise-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 42px;
  }

  .franchise-copy h2,
  .franchise-copy p {
    text-align: center;
  }

  .franchise-copy p,
  .franchise-list {
    margin-left: auto;
    margin-right: auto;
  }

  .franchise-actions {
    justify-content: center;
  }

  .franchise-media img {
    height: 420px;
  }

  .footer-main {
    gap: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 0;
  }

  .promotion-popup__dialog {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .promotion-popup__media {
    max-height: 280px;
  }

  .promotion-popup__content {
    padding: 34px 28px 30px;
  }

  .promotion-popup__content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .faq-hero {
    height: auto;
    min-height: 360px;
    padding: 174px 0 86px;
  }

  .contact-hero {
    height: auto;
    min-height: 360px;
    padding: 174px 0 86px;
  }

  .faq-hero__content,
  .services-hero .container,
  .buy-products-hero .container,
  .service-detail-hero .container,
  .contact-hero__content {
    transform: translateY(52px);
  }

  .faq-hero h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .contact-hero h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .contact-page-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .contact-page-heading {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 38px;
    line-height: 46px;
  }

  h2 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .job-application-modal {
    padding: 14px;
  }

  .job-application-modal__dialog {
    border-radius: 14px;
    max-height: calc(100vh - 28px);
    padding: 34px 20px 24px;
  }

  .job-application-modal h2 {
    font-size: 28px !important;
    line-height: 34px !important;
    margin: 0 48px 24px 0;
  }

  .job-application-modal__close {
    height: 38px;
    right: 16px;
    top: 16px;
    width: 38px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .section-pad-sm {
    padding: 20px 20px;
  }

  .hero-section {
    min-height: 650px;
  }

  .hero-stats strong {
    font-size: 30px;
  }

  .hero-stats span {
    font-size: 13px;
  }

  .treatments-section .section-heading p {
    font-size: 14px;
    line-height: 20px;
  }

  .treatments-section {
    padding: 20px 0 20px !important;
  }

  .treatments-section::after {
    bottom: -52px;
    height: 104px;
    width: 150%;
  }

  .about-section {
    padding: 30px 0 10px;
  }

  .gallery-section::after {
    bottom: -52px;
    height: 104px;
    width: 150%;
  }

  .about-collage {
    min-height: 330px;
  }

  .about-collage::before {
    height: 100px;
    left: -20px;
    top: 112px;
    width: 100px;
  }

  .about-collage::after {
    height: 64px;
    left: 43%;
    top: 282px;
    width: 64px;
  }

  .about-main {
    height: 305px;
    width: 74%;
  }

  .about-small {
    display: block;
    height: 190px;
    top: 134px;
    width: 54%;
  }

  .about-section h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .testimonials-section {
    padding: 96px 0 72px;
  }

  .testimonials-actions {
    flex-direction: column;
    gap: 16px;
  }

  .review-rating-summary {
    flex-wrap: wrap;
    gap: 23px 26px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .review-rating-item {
    justify-content: center;
    min-width: 220px;
    text-align: center;
  }

  .review-rating-item strong {
    font-size: 42px;
  }

  .reviews-track {
    gap: 20px;
    transform: translateX(16px);
  }

  .review-card {
    flex-basis: calc(100vw - 48px);
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .hiring-section {
    padding: 40px 0;
  }

  .hiring-copy h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .hiring-media img {
    height: 280px;
  }

  .franchise-section {
    padding: 20px 0 30px;
  }

  .franchise-copy h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .franchise-copy p {
    text-align: left;
  }

  .franchise-media img {
    height: 320px;
  }

  .franchise-actions .btn,
  .franchise-actions .btn-primary-green {
    min-width: 0;
    width: 100%;
  }

  .footer-content {
    padding-top: 44px;
  }

  .footer-main {
    gap: 15px;
    grid-template-columns: 1fr;
    padding-bottom: 10px;
  }

  .footer-main > :first-child,
  .footer-main > :last-child {
    grid-column: 1 / -1;
  }

  .footer-main > :nth-child(2),
  .footer-main > :nth-child(3) {
    display: none;
  }

  .footer-links {
    columns: 1;
  }

  .footer-logo {
    height: 118px;
    width: 118px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal-links {
    align-items: center;
    display: inline-flex;
    gap: 14px;
  }

  .footer-legal-links a {
    margin-left: 0;
  }

  .footer-legal-links a + a {
    border-left: 1px solid rgba(102, 102, 102, 0.38);
    padding-left: 14px;
  }

  .promotion-popup {
    padding: 16px;
  }

  .promotion-popup__dialog {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .promotion-popup__media {
    max-height: 220px;
  }

  .promotion-popup__content {
    padding: 28px 22px 24px;
  }

  .promotion-popup__content h2 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  .promotion-popup__copy {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-hero {
    height: auto;
    min-height: 330px;
    padding: 70px 0 74px;
  }

  .services-hero {
    height: auto;
    min-height: 330px;
    padding: 70px 0 74px;
  }

  .service-detail-hero {
    height: auto;
    min-height: 330px;
    padding: 70px 0 74px;
  }

  .contact-hero {
    height: auto;
    min-height: 330px;
    padding: 70px 0 74px;
  }

  .faq-hero__content,
  .services-hero .container,
  .buy-products-hero .container,
  .service-detail-hero .container,
  .contact-hero__content {
    transform: translateY(20px);
  }

  .faq-hero::after {
    height: 64px;
  }

  .services-hero::after {
    height: 64px;
  }

  .service-detail-hero::after {
    height: 64px;
  }

  .contact-hero::after {
    height: 64px;
  }

  .faq-hero h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 0;
  }

  .services-hero h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 0;
  }

  .service-detail-hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .contact-hero h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 0;
  }

  .faq-hero p,
  .contact-hero p,
  .faq-page__intro,
  .contact-page-heading p,
  .contact-form-heading p,
  .faq-answer {
    font-size: 14px;
    line-height: 20px;
  }

  .faq-section {
    padding: 30px 0;
  }

  .faq-category-nav {
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .faq-category-nav button {
    font-size: 13px;
    min-height: 40px;
    padding: 11px 14px 10px;
  }

  .faq-category-list {
    gap: 36px;
  }

  .terms-content-section {
    padding: 142px 0 44px;
  }

  .terms-content,
  .terms-copy li {
    font-size: 14px;
    line-height: 22px;
  }

  .terms-content h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .terms-effective-date,
  .terms-copy h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .terms-copy h2 {
    margin-top: 34px;
  }

  .terms-copy ul {
    gap: 14px;
    margin-top: 24px;
  }

  .services-archive-section {
    padding: 34px 0 48px;
  }

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

  .services-archive-card:nth-last-child(2):nth-child(3n+1),
  .services-archive-card:last-child:nth-child(3n+2) {
    grid-column: auto;
    transform: none;
  }

  .services-archive-card__image {
    height: 230px;
  }

  .services-archive-card__body {
    padding: 20px 20px 24px;
  }

  .services-archive-card h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .service-detail-section {
    padding: 34px 0 52px;
  }

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

  .service-detail-card:nth-last-child(2):nth-child(3n+1),
  .service-detail-card:last-child:nth-child(3n+2) {
    grid-column: auto;
    transform: none;
  }

  .service-detail-card {
    min-height: 0;
  }

  .service-detail-card__image {
    height: 230px;
  }

  .service-detail-card__body {
    padding: 20px 20px 24px;
  }

  .service-detail-card h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .service-detail-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .contact-page-section {
    padding: 30px 0;
  }

  .contact-page-section .container {
    max-width: 100%;
    overflow: hidden;
  }

  .contact-page-heading {
    margin-bottom: 28px;
  }

  .contact-page-heading h2,
  .contact-form-heading h2 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  .contact-form-panel {
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 24px 20px;
    width: 100%;
  }

  .contact-info-card {
    border-radius: 12px;
    gap: 16px;
    min-height: 104px;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 22px 20px;
    width: 100%;
  }

  .contact-info-card__icon {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }

  .contact-info-card__icon img {
    height: 20px;
    width: 20px;
  }

  .contact-info-card__icon--email img {
    height: 17px;
    width: 20px;
  }

  .contact-info-card__icon--location img {
    height: 23px;
    width: 20px;
  }

  .contact-info-card h3,
  .contact-info-card h3 a {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_left_half,
  .contact-gravity-form .gform_wrapper.gravity-theme .gfield.gf_right_half,
  .contact-gravity-form .gform_wrapper.gravity-theme .gfield.gfield--width-half,
  .contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(1),
  .contact-gravity-form .gform_wrapper.gravity-theme .gfield:nth-child(2) {
    grid-column: 1 / -1 !important;
  }

  .contact-gravity-form,
  .contact-gravity-form .gform_wrapper.gravity-theme,
  .contact-gravity-form .gform_wrapper.gravity-theme form,
  .contact-gravity-form .gform_wrapper.gravity-theme .gform-body,
  .contact-gravity-form .gform_wrapper.gravity-theme .gform_body,
  .contact-gravity-form .gform_wrapper.gravity-theme .gform_fields {
    max-width: 100% !important;
    width: 100% !important;
  }

  .contact-gravity-form .gform_wrapper.gravity-theme .gform_fields {
    grid-template-columns: 1fr !important;
  }

  .bamboo-contact-gravity-form .gform_fields {
    column-gap: 0 !important;
    row-gap: 10px !important;
  }

  .contact-gravity-form .gform_wrapper.gravity-theme .gfield input,
  .contact-gravity-form .gform_wrapper.gravity-theme .gfield textarea {
    max-width: 100% !important;
    width: 100% !important;
  }

  .contact-gravity-form .gform_wrapper.gravity-theme .gform_button,
  .contact-gravity-form .gform_wrapper.gravity-theme input[type="submit"],
  .contact-gravity-form .gform_wrapper.gravity-theme button[type="submit"] {
    min-width: 0;
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100%;
  }

  .contact-map-section {
    height: 360px;
  }

  .thank-you-section {
    min-height: 560px;
    padding: 170px 0 70px;
  }

  .thank-you-card__icon {
    height: 64px;
    margin-bottom: 18px;
    width: 64px;
  }

  .thank-you-card__icon img {
    height: 28px;
    width: 28px;
  }

  .thank-you-card h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .thank-you-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    font-size: 16px !important;
    line-height: 26px !important;
    padding: 18px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .royalty-section {
    background-position: left center;
    min-height: 500px;
    padding: 132px 0 104px;
  }

  .royalty-section::before {
    background: rgba(255, 255, 255, 0.72);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
  }

  .royalty-content {
    margin: 0 auto;
    max-width: 100%;
  }

  .royalty-content h2,
  .royalty-content p {
    text-align: center;
  }

  .royalty-content p {
    margin: 0 auto;
  }

  .awards-section {
    padding: 20px 0 20px;
  }

  .awards-section::before {
    height: 104px;
    top: -52px;
    width: 150%;
  }

  .awards-section .row {
    flex-wrap: nowrap;
    max-width: 430px;
  }

  .awards-section .row > [class*="col"] {
    flex: 1 1 0;
    max-width: none;
  }

  .award-card {
    height: 112px;
    padding: 12px 10px;
  }

  .award-card img {
    max-height: 78px;
    max-width: 100%;
  }

  .award-learn-more {
    display: none;
  }

}

@media (max-width: 575.98px) {
  .top-bar {
    height: 30px;
  }

  .top-bar .container {
    height: 30px;
  }

  .top-actions {
    gap: 14px;
  }

  .top-phone,
  .language-select select {
    font-size: 12px;
    line-height: normal;
  }

  .language-select:not(.top-translate)::after,
  .top-translate .gtranslate_wrapper::after {
    top: 44%;
  }

  .top-translate select.gt_selector option {
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 13px;
  }

  .top-phone img {
    height: 15px;
    width: 15px;
  }

  .footer-hours-row::after {
    height: 1.1px;
  }

  .footer-contact-hours .footer-hours-row + .footer-hours-row {
    border-top: 1px solid rgba(0, 0, 0, 0.22);
  }

  .logo-panel {
    min-height: 74px;
    width: 108px;
  }

  .brand-logo {
    height: 60px;
    width: 60px;
  }

  .navbar {
    min-height: 74px;
  }

  .navbar-collapse {
    max-height: calc(100dvh - 104px);
  }

  .site-header {
    min-height: 104px;
  }

  .hero-section {
    min-height: 620px;
    padding: 146px 0 88px;
  }

  h1 {
    font-size: 32px;
    line-height: 39px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 39px;
  }

  .hero-title-emphasis {
    font-size: 32px;
    line-height: 50px;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 28px;
  }

  .hero-stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stat {
    min-width: 0;
  }

  .hero-stat {
    min-width: 112px;
    text-align: left;
  }

  .hero-section::after {
    height: 64px;
    width: 100%;
  }

  h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .btn {
    width: 100%;
  }

  .btn + .btn,
  .btn.me-2 {
    margin-top: 10px;
    margin-right: 0 !important;
  }

  .gallery-slider {
    padding: 0;
  }

  .gallery-actions {
    margin-top: 20px;
  }

  .gallery-slide {
    flex-basis: var(--gallery-slide-width);
  }

  .gallery-slide img {
    height: 360px;
  }

  .gallery-control-prev {
    left: 0;
  }

  .gallery-control-next {
    right: 0;
  }

  .award-card {
    height: 112px;
  }
}
