/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  :root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #ff6a3e;
    --primaryLight: #637dc6;
    --secondary: #637dc6;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #1a1a1a;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1.25rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    --background: #f4f3ee;
  }
  body {
    margin: 0;
    padding: 0;
  }
  *,
  *:before,
  *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primaryLight);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  /* General button styles */
  .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    border-radius: 0.5rem;
    background-color: var(--secondary);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    font-family: "Atma", Arial, sans-serif;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  .cs-button-solid:hover {
    background-color: var(--primary);
  }
  .cs-button-solid:hover:before {
    border-radius: 1rem;
    background-color: #f15b43;
    width: 100%;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  body,
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: "Atma", Arial, sans-serif;
    font-size: 100%;
    color: var(--background);
    overflow-y: auto;
    min-height: 100vh;
    scroll-behavior: smooth;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    background-color: var(--background);
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
    text-wrap: balance;
  }
  p,
  li {
    color: #000;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  /* atma-regular - latin */
  @font-face {
    font-style: normal;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Atma";
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/atma-v16-latin-regular.woff2") format("woff2");
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* atma-700 - latin */
  @font-face {
    font-style: normal;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Atma";
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/atma-v16-latin-700.woff2") format("woff2");
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
    /* Custom scrollbar */
  }
  body ::-webkit-scrollbar,
  html ::-webkit-scrollbar {
    width: 1.25em;
    height: 0.5em;
  }
  body ::-webkit-scrollbar-track,
  html ::-webkit-scrollbar-track {
    background: hsla(224, 46%, 58%, 0.5);
    border-radius: 100vw;
  }
  body ::-webkit-scrollbar-thumb,
  html ::-webkit-scrollbar-thumb {
    background: #637dc6;
    border: 0.5em #637dc6;
    border-radius: 100vw;
  }
  body ::-webkit-scrollbar-thumb:hover,
  html ::-webkit-scrollbar-thumb:hover {
    background: hsl(8, 86%, 60%);
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  #dark-mode-toggle {
    z-index: 1000;
    transform: translateX(-240%);
    display: flex;
    border: none;
    background: transparent;
    height: clamp(2rem, 6vw, 5rem);
    width: clamp(2rem, 6vw, 5rem);
    overflow: hidden;
    padding: 0;
    justify-content: center;
    align-self: center;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: clamp(1rem, 3vw, 2rem);
    width: clamp(1rem, 3vw, 2rem);
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
    fill: #fff;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
  }
  #dark-mode-toggle:hover {
    cursor: pointer;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
body,
html {
  /* reset margin and padding so there's no gap between the nav and the screen edges */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation:before {
    height: 100%;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background: rgba(26, 26, 26, 0.08);
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: clamp(0.5rem, 10vw, 1.5rem) calc(16 / 16 * 0.5rem);
    transition: background-color 0.3s;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 0;
    /* 56px - 80px */
    height: clamp(3rem, 13vw, 6rem);
    width: auto;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    /* places the image to the left edge of the parent */
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin: 0 0 0 auto;
    background-color: var(--primaryLight);
    height: clamp(2.5rem, 5vw, 3.5rem);
    width: clamp(2.5rem, 5vw, 3.5rem);
    transition: transform 0.6s;
  }
  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    height: clamp(0.75rem, 1.5vw, 1rem);
    width: clamp(1rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #fafbfc;
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    transform: scaleX(0);
    background-color: #fff;
    height: 100vh;
    min-width: 60vw;
    overflow: hidden;
    transition: transform 0.4s, opacity 0.3s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    gap: 2.5rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(-2.5rem);
    margin-right: 0;
    width: 100%;
    list-style: none;
    transition: transform 0.6s, opacity 0.9s;
    text-align: right;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0.25rem;
    text-decoration: none;
    text-transform: uppercase;
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    font-weight: bold;
    color: var(--headerColor);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: currentColor;
    height: 1px;
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation.cs-active {
    background-color: var(--primary);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    height: 100%;
  }
  #cs-navigation.cs-active:after {
    opacity: 1;
    width: 100%;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll {
    /* when the scroll class is on the body, run these styles */
  }
  body.scroll #cs-navigation:before {
    height: 100%;
  }
  body.scroll #ap-popbtn-66d9c0c2a123049a33e5212c.appointedd-booking-widget-popover {
    z-index: 1 !important;
    position: relative !important;
    display: inline-block !important;
    border-radius: 0.5rem !important;
    margin: 0 !important;
    background-color: var(--secondary) !important;
    width: 11.25rem !important;
    /* clips corners of the before element */
    overflow: hidden !important;
    padding: 0 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em) !important;
    font-weight: 700 !important;
    color: #fff !important;
  }
  body.scroll:before {
    position: absolute;
    top: 0;
    left: 0;
    /* black overlay on scroll */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 0%;
    width: 100%;
    transition: height 0.3s;
  }
  body.scroll:after {
    z-index: -1100;
    position: absolute;
    top: 0%;
    right: 0;
    /* side overlay when menu opens */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background: #f15b43;
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
  #cs-navigation .cs-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: auto;
    /* same height as the cs-ul-wrapper */
    height: 5rem;
    max-width: 80rem;
    width: 100%;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    height: 4.625rem;
    width: auto;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    padding-left: 1rem;
  }
  #cs-navigation .cs-ul-wrapper {
    /* absolutely positioned to be dead center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    gap: 1.5rem;
  }
  #cs-navigation .cs-li {
    padding: 2.5rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    z-index: 1;
    position: relative;
    display: block;
    margin: 0;
    padding: 0 1rem;
    text-decoration: none;
    text-transform: uppercase;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 0.6vw, 1rem);
    line-height: 1.5em;
    font-weight: 700;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:before {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    /* on scroll background */
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
    display: block;
    background: var(--primarylight);
    height: 2.5rem;
    width: 100%;
    transition: opacity 0.3s, transform 0.3s;
  }
  #cs-navigation .cs-li-link:hover:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  #cs-navigation .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    border: 1px solid var(--primarylight);
    margin: 0;
    background-color: var(--primaryLight);
    min-width: 9.375rem;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    text-decoration: none;
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    font-weight: 700;
    color: #fff;
    text-align: center;
  }
  #cs-navigation .cs-button-solid:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 1;
    background: var(--primarylight);
    height: 100%;
    width: 0%;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover:before {
    background: var(--primaryLight);
    width: 100%;
  }
  #cs-navigation:before {
    position: absolute;
    top: 0;
    left: 0;
    /* on scroll background */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primarylight);
    height: 0%;
    width: 100%;
    transition: height 0.3s;
  }
}
/*-- -------------------------- -->
  <---   Interior Page Header     -->
  <--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
    width: 96%;
    font-size: 2.13333333rem;
    color: #fff;
    text-align: center;
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 25rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 4rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-1865 {
    padding: var(--sectionPadding);
    padding-top: 0;
    padding-bottom: 2.5rem;
    background-color: var(--background);
  }
  #cs-footer-1865 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #cs-footer-1865 .cs-subscribe {
    text-align: center;
    width: 90%;
    max-width: 40rem;
    margin: auto;
    /* changes to -224px at desktop */
    margin-bottom: -15.875rem;
    /* 60px - 100px top & bottom */
    padding: clamp(3rem, 5vw, 5.5rem) 1.5rem clamp(0rem, 0vw, 0rem);
    background-color: #02B9BB;
    border: 0px solid #000;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* 314px */
    transform: translateY(-19.625rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  #cs-footer-1865 .cs-subscribe:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-19.825rem);
  }
  #cs-footer-1865 .cs-topper {
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColorWhite);
  }
  #cs-footer-1865 .cs-title {
    color: var(--bodyTextColorWhite);
    max-width: 25ch;
    text-wrap: balance;
  }
  #cs-footer-1865 .cs-text {
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #cs-footer-1865 .cs-form {
    width: 70%;
    max-width: 45rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-footer-1865 .cs-input {
    font-size: 1rem;
    width: 100%;
    /* 46px - 56px */
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    padding-left: 1.25rem;
    border: none;
    border-radius: 1rem;
    display: block;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
    color: #000;
    /* Add this line to set the text color to black */
  }
  #cs-footer-1865 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    margin: 0.5rem 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primaryLight);
    color: #fff;
    border-radius: 1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    border: none;
  }
  #cs-footer-1865 .cs-button-solid #cs-footer-1865 .cs-button-solid:hover {
    background-color: #ffffff;
    color: var(--headerColor);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  #cs-footer-1865 .cs-button-solid #cs-footer-1865 .cs-button-solid:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  #cs-footer-1865 .cs-button-solid #cs-footer-1865 .cs-submit {
    width: 100%;
    color: var(--bodyTextColorWhite);
    border: none;
    transition: background-color 0.3s;
  }
  #cs-footer-1865 .cs-button-solid #cs-footer-1865 .cs-submit:hover {
    cursor: pointer;
  }
  #cs-footer-1865 .cs-button-solid:focus {
    outline: none;
  }
  #cs-footer-1865 .cs-top {
    width: 50%;
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 6vw, 4rem);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* 64px - 100px */
    column-gap: clamp(4rem, 9vw, 6.25rem);
    row-gap: 2rem;
  }
  #cs-footer-1865 .cs-logo-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 32px - 48px */
    gap: clamp(2rem, 4vw, 3rem);
  }
  #cs-footer-1865 .cs-logo {
    width: 100%;
    max-width: 10rem;
    height: auto;
  }
  #cs-footer-1865 .cs-logo img {
    width: 100%;
    height: auto;
  }
  #cs-footer-1865 .cs-social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-footer-1865 .cs-social-li {
    list-style: none;
  }
  #cs-footer-1865 .cs-social-link {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.5rem;
    background-color: none;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-footer-1865 .cs-social-link:hover {
    background-color: none;
  }
  #cs-footer-1865 .cs-social-link:hover .cs-social-icon {
    filter: brightness(0) invert(1);
  }
  #cs-footer-1865 .cs-social-icon {
    width: 12.5rem;
    height: 7.5rem;
    display: block;
    object-fit: contain;
  }
  #cs-footer-1865 .cs-ul {
    width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-footer-1865 .cs-contact-ul {
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
    align-items: center;
  }
  #cs-footer-1865 .cs-li {
    list-style: none;
    margin: 0;
    display: block;
  }
  #cs-footer-1865 .cs-footer-icon {
    margin: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
  }
  #cs-footer-1865 .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    /* 16px - 24px bottom */
    margin: 0 0 clamp(1rem, 3.5vw, 1.5rem) 0;
    color: var(--headerColor);
    display: block;
  }
  #cs-footer-1865 .cs-link,
  #cs-footer-1865 .cs-li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0 0.5rem;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cs-day {
    text-align: left;
  }
  .cs-time {
    text-align: right;
  }
  #cs-footer-1865 .cs-link:hover:before {
    width: 100%;
  }
  #cs-footer-1865 .cs-link:before {
    /* on hover underline */
    content: "";
    width: 0%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
  }
  #cs-footer-1865 .cs-bottom {
    width: 90%;
    margin: 0;
    /* 20px - 40px top */
    padding: clamp(1.25rem, 5vw, 2.5rem) 0 0 0;
    border-top: 1px solid #DED1BD;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-footer-1865 .cs-nav {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 20px - 40px */
    column-gap: clamp(1.25rem, 5.3vw, 2.5rem);
  }
  #cs-footer-1865 .cs-nav-li {
    list-style: none;
  }
  #cs-footer-1865 .cs-nav-link {
    /* 14px - 16px */
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    position: relative;
  }
  #cs-footer-1865 .cs-nav-link:hover {
    color: #8F5B34;
  }
  #cs-footer-1865 .cs-nav-link:hover:before {
    width: 100%;
  }
  #cs-footer-1865 .cs-nav-link:before {
    /* on hover underline */
    content: "";
    width: 0%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
  }
  #cs-footer-1865 .cs-copyright {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #cs-footer-1865 .cs-copyright-link {
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    margin: 0;
    color: inherit;
    display: inline-block;
  }
  #cs-footer-1865 .cs-copyright-link:hover {
    text-decoration: underline;
  }
  .klaviyo-form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    max-width: 45rem;
  }
  .klaviyo-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid var(--primaryLight);
  }
  .klaviyo-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid var(--primaryLight);
  }
  .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  @keyframes spin {
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .cs-submit {
    position: relative;
    min-width: 120px;
    padding: 0 1.5rem;
  }
  .cs-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .hidden {
    display: none !important;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-1865 .cs-subscribe {
    /* 60px - 100px top & bottom */
    /* 100px - 200px left & right */
    padding: clamp(3.75rem, 5vw, 6.25rem) clamp(6.25rem, 13vw, 12.5rem);
    border-radius: 25px;
    width: 100%;
    max-width: 60rem;
  }
  #cs-footer-1865 .cs-form {
    flex-direction: column;
    gap: 1rem;
  }
  #cs-footer-1865 .cs-submit {
    width: 30%;
  }
  #cs-footer-1865 .cs-logo-wrapper {
    width: clamp(15rem, 20vw, 20rem);
    flex-direction: column;
    gap: clamp(2rem, 2vw, 7.5rem);
    align-items: center;
  }
  #cs-footer-1865 .cs-contact-ul {
    /* 152px - 412px */
    width: clamp(9.5rem, 9vw, 25.75rem);
    align-items: center;
    text-align: center;
  }
  #cs-footer-1865 .cs-logo {
    width: clamp(100px, 10vw, 120px);
    height: auto;
  }
  #cs-footer-1865 .cs-social-icon {
    width: clamp(8rem, 12vw, 10rem);
    height: clamp(8rem, 12vw, 10rem);
  }
  #cs-footer-1865 .cs-nav-link {
    font-size: clamp(14px, 1.5vw, 16px);
  }
  #cs-footer-1865 .cs-top {
    width: 90%;
    flex-wrap: nowrap;
    justify-content: none;
    column-gap: clamp(2rem, 2vw, 6.25rem);
  }
  #cs-footer-1865 .cs-container {
    width: 90%;
  }
  #cs-footer-1865 .cs-li {
    max-width: 15ch;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-1865 .cs-subscribe {
    margin-bottom: -14rem;
    max-width: 60rem;
  }
  #cs-footer-1865 .cs-form {
    flex-direction: column;
    gap: 1rem;
  }
  #cs-footer-1865 .cs-bottom {
    flex-direction: row;
  }
  #cs-footer-1865 .cs-copyright {
    text-align: right;
  }
  #cs-footer-1865 .cs-logo-wrapper {
    width: 10rem;
    gap: 5rem;
  }
  #cs-footer-1865 .cs-logo {
    max-width: 10rem;
  }
  #cs-footer-1865 .cs-social-icon {
    width: 12.5rem;
    height: 7.5rem;
  }
  #cs-footer-1865 .cs-nav-link {
    font-size: var(--bodyFontSize);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-footer-1865 {
    background-color: var(--dark);
  }
  body.dark-mode #cs-footer-1865 .cs-subscribe {
    background-color: #02B9BB;
    border-color: var(--medium);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1), 0 1px 3px rgba(255, 255, 255, 0.06);
  }
  body.dark-mode #cs-footer-1865 .cs-subscribe:hover {
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.1), 0 4px 6px rgba(255, 255, 255, 0.05);
  }
  .cs-button-solid:hover {
    background-color: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #cs-footer-1865 .cs-topper {
    color: var(--primary);
  }
  body.dark-mode #cs-footer-1865 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #cs-footer-1865 .cs-header,
  body.dark-mode #cs-footer-1865 .cs-link,
  body.dark-mode #cs-footer-1865 .cs-social-link,
  body.dark-mode #cs-footer-1865 .cs-nav-link,
  body.dark-mode #cs-footer-1865 .cs-copyright,
  body.dark-mode #cs-footer-1865 .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-footer-1865 .cs-submit {
    background-color: var(--primary);
  }
  body.dark-mode #cs-footer-1865 .cs-submit:hover {
    background-color: #fff;
    color: var(--primary);
  }
  body.dark-mode #cs-footer-1865 .cs-social-link {
    border-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-footer-1865 .cs-icon,
  body.dark-mode #cs-footer-1865 .cs-logo {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-footer-1865 .cs-bottom {
    border-color: rgba(255, 255, 255, 0.1);
  }
  #cs-footer-1865 .cs-input {
    background-color: #fff;
    color: #000;
  }
  #cs-footer-1865 .cs-input:focus {
    box-shadow: 0 0 0 2px var(--primary);
  }
}
/*-- -------------------------- -->
<---           Popup            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #popup-2064 {
    max-width: 52.625rem;
    /* 16px - 48px*/
    padding: 8.5rem clamp(1rem, 50vw, 28rem);
    background-color: #f3fcfb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    border-radius: 1rem;
    /* hide from users and screen readers by default. this gets removed by JS if we decide a user should be shown the banner */
    display: none;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 1400;
    transform: translateY(10rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  #popup-2064 .cs-container {
    display: flex;
    flex-direction: column;
  }
  #popup-2064 .cs-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto 0;
  }
  #popup-2064 .cs-close {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: transform 0.3s;
  }
  #popup-2064 .cs-close:hover {
    cursor: pointer;
    transform: rotate(90deg);
  }
  #popup-2064 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
  #popup-2064 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 0.25rem;
    color: var(--secondary);
    display: block;
  }
  #popup-2064 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: var(--secondary);
    overflow: hidden;
    color: var(--bodyTextColorWhite);
    border: none;
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #popup-2064 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #popup-2064 .cs-button-solid:hover:before {
    width: 100%;
  }
  #popup-2064.cs-show {
    opacity: 1;
    transform: translateY(0);
  }
  #popup-2064 .cs-accept:hover {
    cursor: pointer;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #popup-2064 .cs-content {
    flex-direction: row;
    align-items: center;
    padding: 1rem auto;
  }
  #popup-2064 .cs-text {
    margin: 0;
  }
  #popup-2064 .cs-link {
    display: inline;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #popup-2064 {
    background-color: var(--medium);
  }
  body.dark-mode #popup-2064 .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #popup-2064 .cs-text {
    opacity: 0.8;
  }
}
