@charset "UTF-8";
/* PP Neue Montreal - book */
@font-face {
  font-display: swap;
  font-family: "PP Neue Montreal";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ppneuemontreal-book.woff") format("woff");
}
/* PP Editorial New - regular */
@font-face {
  font-display: swap;
  font-family: "PP Editorial New";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/PPEditorialNew-Regular.otf") format("opentype");
}
/* PP Editorial New - bold */
@font-face {
  font-display: swap;
  font-family: "PP Editorial New";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/PPEditorialNew-Ultrabold.otf") format("opentype");
}
: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: #FAFF3D;
  --primaryLight: #C0F53D;
  --secondary: #C0F53D;
  --secondaryLight: #FAFF3D;
  --headerColor: #1A2209;
  --bodyTextColor: #1A2209;
  --bodyTextColorWhite: #FAFF3D;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
  font-family: "PP Neue Montreal", sans-serif;
}

*,
*:before,
*:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
  font-family: "Space Mono", monospace;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

.cs-accent-wrapper {
  position: relative;
  display: inline-block;
}

.cs-accent-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewY(11deg);
  width: 146%;
  height: 69%;
  border: 2px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.cs-accent {
  font-family: "PP Editorial New", serif;
  font-style: italic;
}

/* cursor spotlight — fixed glow tracking the pointer */
.cs-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), rgba(192, 245, 61, 0.12), transparent 60%);
}

@media (pointer: coarse) {
  .cs-spotlight {
    display: none;
  }
}
/* custom cursor blob inside the example window */
.cs-wincursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.55), rgba(236, 72, 153, 0) 70%);
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s;
}

.cs-wincursor.is-on {
  opacity: 1;
}

#storytelling-300 .cs-window {
  cursor: none;
}

@media (pointer: coarse) {
  .cs-wincursor {
    display: none;
  }
  #storytelling-300 .cs-window {
    cursor: auto;
  }
}
.cs-star {
  position: absolute;
  color: currentColor;
  opacity: 0.9;
}

.cs-star-1 {
  top: -10px;
  right: -25px;
}

.cs-star-2 {
  top: 5px;
  right: -35px;
}

.cs-star-3 {
  top: -5px;
  right: -45px;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body {
    position: relative;
    z-index: 1;
  }
  body:before {
    content: "";
    width: 100%;
    height: 0%;
    background: #fff;
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.3s;
  }
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  body.scroll #cs-navigation:before {
    border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }
  body.cs-open {
    overflow: hidden;
  }
  body.cs-open:before {
    height: 100%;
  }
  #cs-navigation {
    width: 94%;
    max-width: 80rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem);
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.2s, border-radius 0.3s ease-in-out;
  }
  #cs-navigation.cs-active:before {
    transform: translateX(-50%) scale(1.03);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 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;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #1a1a1a;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
    /* sends it to the right in the 3rd position */
    order: 3;
  }
  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 1;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    display: none;
  }
  #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 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #fafbfc;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #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 {
    width: 100%;
    height: 100vh;
    padding-bottom: 3rem;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: scroll;
  }
  #cs-navigation .cs-li {
    list-style: none;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }
  #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 {
    font-size: 1.5rem;
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    top: 0;
  }
  #cs-navigation {
    width: 94%;
    max-width: 90rem;
    height: 6rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 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;
  }
  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    background-color: var(--primary);
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(10000%);
  }
  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    /* absolutely positioned to be dead center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cs-navigation .cs-social {
    display: flex;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes rotateGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  @keyframes twinkle {
    0%, 100% {
      opacity: 0;
      transform: scale(0);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
  }
  #hero-1350 {
    height: auto;
    padding: 0 1rem;
    padding-bottom: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #0A0D04;
  }
  #hero-1350 .cs-container {
    width: 100%;
    max-width: 80rem;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 5;
  }
  #hero-1350 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero-1350 .cs-topper {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
    display: block;
  }
  #hero-1350 .cs-brand {
    display: block;
    font-family: "PP Editorial New", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primaryLight);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  #hero-1350 .cs-title {
    /* 80px - 140px */
    font-size: clamp(5rem, 10vw, 8.75rem);
    font-weight: 500;
    line-height: 0.8em;
    text-align: inherit;
    max-width: 20ch;
    margin: 0 0 1rem 0;
    color: #fff;
    position: relative;
  }
  #hero-1350 .cs-text {
    font-size: 1.25rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 0 2.5rem 0;
    color: #e8e8e8;
  }
  #hero-1350 .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0 3rem;
    border-radius: 1.875rem;
    background-color: #0A0D04;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(250, 255, 61, 0.5);
  }
  #hero-1350 .cs-button-solid:before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, #C0F53D, #FAFF3D);
    background-size: 200% 100%;
    border-radius: 1.875rem;
    z-index: -2;
    animation: rotateGradient 3s linear infinite;
  }
  #hero-1350 .cs-button-solid:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0A0D04;
    border-radius: 1.8125rem;
    z-index: -1;
  }
  #hero-1350 .cs-bubbles {
    /* this scales the children inside of it down. They're all in ems so they pull from the parent font size for their value of em, in this case, the value of em is tied to the viewwidth size and stops growing when the font size is equal to 1em, which it pulls from the nearst parent with a declred font size (which is the html tag, and that tag is 16px by default) */
    font-size: min(2vw, 0.5em);
    position: absolute;
    z-index: -1;
  }
  #hero-1350 .cs-bubbles1 {
    width: 42.5em;
    height: 45.25em;
    right: -11.875rem;
    /* changes to 172 at large desktop */
    top: 0;
  }
  #hero-1350 .cs-bubbles1:before {
    /* white border bubble */
    content: "";
    width: 38.875em;
    height: 38.875rem;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    animation-name: floatAnimation;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero-1350 .cs-bubbles1:after {
    /* orange bubble */
    content: "";
    width: 34.125em;
    height: 34.125em;
    background: var(--primary);
    opacity: 0.8;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero-1350 .cs-bubbles2 {
    width: 20.625rem;
    height: 29.75rem;
    /* changes to 160px at larger desktop */
    left: -13.75rem;
    /* removed at larger desktop */
    bottom: -16.25rem;
  }
  #hero-1350 .cs-bubbles2:before {
    /* white border bubble */
    content: "";
    width: 20.625rem;
    height: 20.625rem;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero-1350 .cs-bubbles2:after {
    /* orange bubble */
    content: "";
    width: 16.25rem;
    height: 16.25rem;
    background: var(--primary);
    opacity: 0.8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 2.5rem;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero-1350 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.2;
  }
  #hero-1350 .cs-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #C0F53D;
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
  }
  #hero-1350 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.2;
  }
  #hero-1350 .cs-horizon {
    position: relative;
    margin-top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 35vh;
    z-index: 10;
    pointer-events: none;
  }
  #hero-1350 .cs-horizon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background-color: #0A0D04;
    z-index: 2;
  }
  #hero-1350 .cs-horizon-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 250px;
    background: radial-gradient(ellipse at center, rgba(192, 245, 61, 0.8) 0%, rgba(250, 255, 61, 0.6) 15%, rgba(100, 200, 80, 0.5) 35%, rgba(50, 150, 100, 0.3) 55%, rgba(20, 80, 60, 0.15) 75%, transparent 100%);
    z-index: 1;
    filter: blur(60px);
    border: 5px solid green;
    animation: cs-glow-pulse 3s ease-in-out infinite;
  }
  @keyframes cs-glow-pulse {
    0%, 100% {
      opacity: 0.6;
      transform: translateX(-50%) scale(0.95);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) scale(1.05);
    }
  }
}
@media only screen and (min-width: 0rem) and (prefers-reduced-motion: reduce) {
  #hero-1350 .cs-horizon-glow {
    animation: none;
  }
}
@media only screen and (min-width: 0rem) {
  #hero-1350 .cs-horizon-content {
    position: relative;
    z-index: 3;
    padding: 3.75rem 1rem;
    text-align: center;
    color: #fff;
    pointer-events: auto;
  }
  #hero-1350 .cs-horizon-content p {
    font-size: 2.5rem;
    line-height: 1.4em;
    margin: 0 auto;
    max-width: 46.875rem;
  }
  #hero-1350 .cs-horizon-content .cs-accent {
    font-family: "PP Editorial New", serif;
    font-style: italic;
  }
  #hero-1350 .cs-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  #hero-1350 .cs-star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle ease-in-out infinite;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
  }
  #hero-1350 .cs-star:nth-child(1) {
    width: 2px;
    height: 2px;
    top: 10%;
    left: 20%;
    animation-duration: 3s;
    animation-delay: 0s;
  }
  #hero-1350 .cs-star:nth-child(2) {
    width: 1px;
    height: 1px;
    top: 15%;
    left: 45%;
    animation-duration: 4s;
    animation-delay: 1s;
  }
  #hero-1350 .cs-star:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 8%;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 2s;
  }
  #hero-1350 .cs-star:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 25%;
    left: 15%;
    animation-duration: 3.5s;
    animation-delay: 0.5s;
  }
  #hero-1350 .cs-star:nth-child(5) {
    width: 1px;
    height: 1px;
    top: 30%;
    left: 55%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
  }
  #hero-1350 .cs-star:nth-child(6) {
    width: 2px;
    height: 2px;
    top: 35%;
    left: 80%;
    animation-duration: 3s;
    animation-delay: 2.5s;
  }
  #hero-1350 .cs-star:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 25%;
    animation-duration: 5s;
    animation-delay: 0s;
  }
  #hero-1350 .cs-star:nth-child(8) {
    width: 1px;
    height: 1px;
    top: 45%;
    left: 60%;
    animation-duration: 4s;
    animation-delay: 3s;
  }
  #hero-1350 .cs-star:nth-child(9) {
    width: 2px;
    height: 2px;
    top: 50%;
    left: 10%;
    animation-duration: 3.5s;
    animation-delay: 1s;
  }
  #hero-1350 .cs-star:nth-child(10) {
    width: 2px;
    height: 2px;
    top: 55%;
    left: 75%;
    animation-duration: 4.5s;
    animation-delay: 2s;
  }
  #hero-1350 .cs-star:nth-child(11) {
    width: 1px;
    height: 1px;
    top: 12%;
    left: 35%;
    animation-duration: 5s;
    animation-delay: 0.5s;
  }
  #hero-1350 .cs-star:nth-child(12) {
    width: 3px;
    height: 3px;
    top: 18%;
    left: 65%;
    animation-duration: 3s;
    animation-delay: 1.5s;
  }
  #hero-1350 .cs-star:nth-child(13) {
    width: 2px;
    height: 2px;
    top: 22%;
    left: 88%;
    animation-duration: 4s;
    animation-delay: 2.5s;
  }
  #hero-1350 .cs-star:nth-child(14) {
    width: 1px;
    height: 1px;
    top: 28%;
    left: 42%;
    animation-duration: 3.5s;
    animation-delay: 0s;
  }
  #hero-1350 .cs-star:nth-child(15) {
    width: 2px;
    height: 2px;
    top: 33%;
    left: 5%;
    animation-duration: 5s;
    animation-delay: 3s;
  }
  #hero-1350 .cs-star:nth-child(16) {
    width: 2px;
    height: 2px;
    top: 38%;
    left: 50%;
    animation-duration: 4.5s;
    animation-delay: 1s;
  }
  #hero-1350 .cs-star:nth-child(17) {
    width: 3px;
    height: 3px;
    top: 42%;
    left: 92%;
    animation-duration: 3s;
    animation-delay: 2s;
  }
  #hero-1350 .cs-star:nth-child(18) {
    width: 1px;
    height: 1px;
    top: 48%;
    left: 28%;
    animation-duration: 4s;
    animation-delay: 0.5s;
  }
  #hero-1350 .cs-star:nth-child(19) {
    width: 2px;
    height: 2px;
    top: 52%;
    left: 68%;
    animation-duration: 3.5s;
    animation-delay: 1.5s;
  }
  #hero-1350 .cs-star:nth-child(20) {
    width: 2px;
    height: 2px;
    top: 58%;
    left: 18%;
    animation-duration: 5s;
    animation-delay: 2.5s;
  }
  #hero-1350 .cs-star:nth-child(21) {
    width: 1px;
    height: 1px;
    top: 62%;
    left: 40%;
    animation-duration: 4.5s;
    animation-delay: 0s;
  }
  #hero-1350 .cs-star:nth-child(22) {
    width: 3px;
    height: 3px;
    top: 5%;
    left: 52%;
    animation-duration: 3s;
    animation-delay: 3s;
  }
  #hero-1350 .cs-star:nth-child(23) {
    width: 2px;
    height: 2px;
    top: 68%;
    left: 85%;
    animation-duration: 4s;
    animation-delay: 1s;
  }
  #hero-1350 .cs-star:nth-child(24) {
    width: 1px;
    height: 1px;
    top: 72%;
    left: 12%;
    animation-duration: 3.5s;
    animation-delay: 2s;
  }
  #hero-1350 .cs-star:nth-child(25) {
    width: 2px;
    height: 2px;
    top: 76%;
    left: 48%;
    animation-duration: 5s;
    animation-delay: 0.5s;
  }
  #hero-1350 .cs-star:nth-child(26) {
    width: 2px;
    height: 2px;
    top: 14%;
    left: 90%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
  }
  #hero-1350 .cs-star:nth-child(27) {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 8%;
    animation-duration: 3s;
    animation-delay: 2.5s;
  }
  #hero-1350 .cs-star:nth-child(28) {
    width: 1px;
    height: 1px;
    top: 85%;
    left: 58%;
    animation-duration: 4s;
    animation-delay: 0s;
  }
  #hero-1350 .cs-star:nth-child(29) {
    width: 2px;
    height: 2px;
    top: 6%;
    left: 78%;
    animation-duration: 3.5s;
    animation-delay: 3s;
  }
  #hero-1350 .cs-star:nth-child(30) {
    width: 2px;
    height: 2px;
    top: 65%;
    left: 32%;
    animation-duration: 5s;
    animation-delay: 1s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1350 .cs-bubbles {
    font-size: 1em;
  }
  #hero-1350 .cs-bubbles1 {
    /* changes to auto at large desktop */
    right: -26.75rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-1350 .cs-bubbles1 {
    /* 200px - 450px */
    margin-left: clamp(12.5rem, 20vw, 28.125rem);
    top: 10.75rem;
    right: auto;
    left: 50%;
  }
}
/* Large Desktop Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
  #hero-1350 .cs-background {
    background-image: url("/images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-1350 .cs-background img {
    display: none;
  }
}
/* Larger Desktop - 1800px */
@media only screen and (min-width: 112.5rem) {
  #hero-1350 .cs-bubbles2 {
    margin-right: 50rem;
    right: 50%;
    left: auto;
    top: 13.125rem;
    bottom: auto;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-884 {
    padding: var(--sectionPadding);
    /* clips floating arrow from overflowing */
    overflow: hidden;
  }
  #services-884 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-884 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 32.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-884 .cs-card-group {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #services-884 .cs-item {
    list-style: none;
    text-align: left;
    margin: 0;
    /* 24px - 32px left & right */
    padding: 2rem clamp(1.5rem, 2vw, 2rem);
    border-radius: 1rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: span 4;
  }
  #services-884 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-884 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 1.25rem 0;
    color: var(--bodyTextColor);
  }
  #services-884 .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    font-weight: 700;
    /* margin top auto pushes it down to the bottom of a flexbox so if the content is shorter than another cs-item, it will always be on the bottom */
    margin: auto 0 0 0;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
  #services-884 .cs-link:hover .cs-icon {
    transform: translateX(0.625rem);
  }
  #services-884 .cs-icon {
    width: 1.5rem;
    height: auto;
    transition: transform 0.3s;
  }
  #services-884 .cs-floater {
    width: 21.9375rem;
    height: auto;
    display: none;
    position: absolute;
    top: -6.25rem;
    left: -1.875rem;
    transform: rotate(66deg) scaleX(-1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-884 .cs-container {
    max-width: 80rem;
  }
  #services-884 .cs-item {
    grid-column: span 2;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-884 .cs-item {
    grid-column: span 1;
  }
  #services-884 .cs-floater {
    display: block;
  }
}
/*-- -------------------------- -->
<---          Projects          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #projects-604 {
    padding: var(--sectionPadding);
  }
  #projects-604 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #projects-604 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #projects-604 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.8vw, 1.25rem);
    row-gap: 2.5rem;
  }
  #projects-604 .cs-item {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #projects-604 .cs-info {
    width: 100%;
    /* 350px - 450px */
    min-height: clamp(21.875rem, 34vw, 28.125rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* 32px - 100px top */
    /* 16px - 24px left & right */
    padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 1.8vw, 1.5rem) 6.25rem;
    border-radius: 0.5rem;
    /* clips the img tag corners */
    overflow: hidden;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    position: relative;
  }
  #projects-604 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #projects-604 .cs-link:hover .cs-header,
  #projects-604 .cs-link:hover .cs-item-text, #projects-604 .cs-link:focus .cs-header,
  #projects-604 .cs-link:focus .cs-item-text {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    height: 100%;
    transition: transform 0.6s, visibility 0.3s, opacity 0.6s;
  }
  #projects-604 .cs-link:hover .cs-number, #projects-604 .cs-link:focus .cs-number {
    padding-bottom: 0.9375rem;
  }
  #projects-604 .cs-link:hover .cs-number:before, #projects-604 .cs-link:focus .cs-number:before {
    width: 50rem;
    height: 31.25rem;
    opacity: 0.9;
  }
  #projects-604 .cs-link:hover .cs-background img, #projects-604 .cs-link:focus .cs-background img {
    transform: scale(1.1);
  }
  #projects-604 .cs-header {
    /* 28px - 40px */
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2em;
    font-weight: 700;
    height: 0;
    /* 16px - 24px bottom */
    margin: 0 0 clamp(1rem, 1.8vw, 1.5rem);
    color: var(--bodyTextColorWhite);
    opacity: 0;
    visibility: hidden;
    transform: translateY(2.5rem);
    transition: transform 0.2s, visibility 0.1s, opacity 0.2s, height 0.4s;
    transition-delay: 0.1s;
  }
  #projects-604 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    width: 100%;
    max-width: 25rem;
    height: 0;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6.25rem);
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s, height 0.4s;
    transition-delay: 0.2s;
  }
  #projects-604 .cs-number {
    /* 24px - 32px */
    font-size: clamp(1.5rem, 2vw, 2rem);
    /* 60px - 80px */
    line-height: clamp(3.75rem, 9vw, 5rem);
    font-weight: 700;
    width: clamp(3.75rem, 7vw, 5rem);
    height: clamp(3.75rem, 7vw, 5rem);
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: padding-bottom 0.3s;
  }
  #projects-604 .cs-number:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: width 0.6s, height 0.6s, opacity 0.3s;
    z-index: -1;
  }
  #projects-604 .cs-h3 {
    /* 20px - 24px */
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
    display: block;
  }
  #projects-604 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    /* clips img tag when it scales on hover */
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #projects-604 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #projects-604 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #projects-604 .cs-flex-group {
    width: 45%;
  }
  #projects-604 .cs-text {
    width: 48vw;
  }
  #projects-604 .cs-card-group {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
  }
  #projects-604 .cs-item {
    width: clamp(31.86%, 30vw, 32.28%);
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-701 {
    padding: var(--sectionPadding);
    background-color: #0A0D04;
    position: relative;
    overflow: hidden;
  }
  #pricing-701 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.2;
  }
  #pricing-701 .cs-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #C0F53D;
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
  }
  #pricing-701 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.2;
  }
  #pricing-701 .cs-container {
    width: 100%;
    max-width: 80em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #pricing-701 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #pricing-701 .cs-content .cs-topper {
    color: var(--primary);
  }
  #pricing-701 .cs-content .cs-title {
    color: #fff;
  }
  #pricing-701 .cs-content .cs-text {
    color: #e8e8e8;
  }
  #pricing-701 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.8vw, 1.25rem);
    perspective: 700px;
    transform-style: preserve-3d;
  }
  #pricing-701 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    margin: 0;
    /* 20px - 40px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    background-color: #fff;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #pricing-701 .cs-item.cs-popular {
    background-color: var(--primary);
  }
  #pricing-701 .cs-item.cs-popular .cs-package {
    color: #f6e5db;
  }
  #pricing-701 .cs-item.cs-popular .cs-price,
  #pricing-701 .cs-item.cs-popular .cs-desc,
  #pricing-701 .cs-item.cs-popular .cs-item-p,
  #pricing-701 .cs-item.cs-popular .cs-li {
    color: var(--bodyTextColorWhite);
  }
  #pricing-701 .cs-item.cs-popular .cs-icon {
    /* if icon is not black, this turns it white */
    filter: grayscale(1) brightness(1000%);
  }
  #pricing-701 .cs-item.cs-popular .cs-button-solid {
    background-color: #f6e5db;
    color: #1a1a1a;
    transition: color 0.3s;
  }
  #pricing-701 .cs-item.cs-popular .cs-button-solid:hover {
    color: #fff;
  }
  #pricing-701 .cs-package {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.4vw, 1rem);
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #767676;
    display: block;
  }
  #pricing-701 .cs-price {
    /* 31px - 49px */
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    text-align: center;
    font-weight: 900;
    margin: 0;
    color: var(--headerColor);
  }
  #pricing-701 .cs-desc {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.2em;
    text-align: center;
    margin: 0 0 0.5rem 0;
    color: var(--bodyTextColor);
    opacity: 0.8;
  }
  #pricing-701 .cs-item-p {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: center;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #pricing-701 .cs-ul {
    margin: 1.5rem 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #eff1f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #pricing-701 .cs-li {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    list-style: none;
    line-height: 1.2em;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: space-between;
    /* push everything to the top so if the li goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 1rem;
  }
  #pricing-701 .cs-li.cs-disabled {
    opacity: 0.5;
  }
  #pricing-701 .cs-icon {
    width: 1.125rem;
    height: auto;
    display: block;
  }
  #pricing-701 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #pricing-701 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #pricing-701 .cs-button-solid:hover:before {
    width: 100%;
  }
  #pricing-701 .cs-price-button {
    /* pushes up against the cs-ul so if there's loess li's in the list, the button always pushes itself to the bottom */
    margin-top: auto;
    width: 100%;
    border-radius: 0;
  }
  #pricing-701 .cs-price-button:before {
    border-radius: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing-701 .cs-card-group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  #pricing-701 .cs-option2 {
    top: auto;
    bottom: 0;
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1294 {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    margin-bottom: -5.625rem;
    border-radius: 1rem;
    overflow: hidden;
    /* 40px - 80px */
    padding: clamp(2.5rem, 5vw, 5rem);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 15;
    transform: translateY(-9.375rem);
  }
  #cta-1294 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    /* changes to 100% at tablet */
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 1.5rem;
  }
  #cta-1294 .cs-title {
    width: 100%;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #cta-1294 .cs-form {
    width: 100%;
    max-width: 45.3125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #cta-1294 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    margin: 0;
    padding: 0;
    padding-left: 1.25rem;
    border: none;
    /* prevents padding from adding to width and height */
    box-sizing: border-box;
    display: block;
  }
  #cta-1294 .cs-input::placeholder {
    color: #767676;
  }
  #cta-1294 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    border-radius: 0.25rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-1294 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cta-1294 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-1294 .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
  }
  #cta-1294 .cs-background {
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-1294 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1294 .cs-container {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  #cta-1294 .cs-content {
    text-align: left;
    max-width: 100%;
    justify-content: space-between;
  }
  #cta-1294 .cs-form {
    flex-direction: row;
  }
  #cta-1294 .cs-input {
    width: 100%;
    max-width: 32.8125rem;
  }
  #cta-1294 .cs-submit {
    width: auto;
    min-width: 11.875rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cta-1294 {
    margin-bottom: 0rem;
  }
  #cta-1294 .cs-content {
    flex-direction: row;
  }
  #cta-1294 .cs-form {
    width: 60%;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-1294 {
    padding: var(--sectionPadding);
    padding-top: 0;
    padding-bottom: 1.25rem;
    background-color: #1a1a1a;
    position: relative;
    z-index: 10;
    /* Navigation Links */
  }
  #cs-footer-1294 .cs-container {
    width: 100%;
    margin: auto;
  }
  #cs-footer-1294 .cs-logo-group {
    /* takes up all the space, lets the other ul's wrap below it */
    width: 100%;
    position: relative;
  }
  #cs-footer-1294 .cs-logo {
    width: 12.3125rem;
    height: auto;
    display: block;
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 2vw, 1.5rem) 0;
  }
  #cs-footer-1294 .cs-logo-img {
    width: 100%;
    height: auto;
  }
  #cs-footer-1294 .cs-logo-img.dark {
    display: none;
  }
  #cs-footer-1294 .cs-text {
    color: var(--bodyTextColorWhite);
    margin: 0 0 2rem 0;
  }
  #cs-footer-1294 .cs-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
  }
  #cs-footer-1294 .cs-link:hover {
    color: var(--primary);
  }
  #cs-footer-1294 .cs-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 2.25rem;
  }
  #cs-footer-1294 .cs-nav {
    width: 45%;
    max-width: 11.25rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  #cs-footer-1294 .cs-nav-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #cs-footer-1294 .cs-header {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: block;
  }
  #cs-footer-1294 .cs-nav-link {
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1.5em;
    width: auto;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
  }
  #cs-footer-1294 .cs-nav-link:before {
    /* underline */
    content: "";
    width: 0%;
    height: 0.125rem;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }
  #cs-footer-1294 .cs-nav-link:hover {
    color: var(--primary);
  }
  #cs-footer-1294 .cs-nav-link:hover:before {
    width: 100%;
  }
  #cs-footer-1294 .cs-bottom {
    max-width: 80rem;
    margin: auto;
    /* 48px - 100px */
    margin-top: clamp(3rem, 6vw, 6.25rem);
    /* 20px - 32px */
    padding: clamp(1.25rem, 3vw, 2rem) 0 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2.25rem;
    row-gap: 0.75rem;
  }
  #cs-footer-1294 .cs-copyright {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #cs-footer-1294 .cs-copyright .cs-copyright-link {
    opacity: 1;
  }
  #cs-footer-1294 .cs-copyright-link {
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    transition: color 0.3s;
  }
  #cs-footer-1294 .cs-copyright-link:hover {
    color: var(--secondary);
  }
  #cs-footer-1294 .cs-copyright {
    text-align: center;
    width: 100%;
  }
  #cs-footer-1294 .cs-floater-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cs-footer-1294 .cs-floater {
    width: 31.625rem;
    height: 31.625rem;
    margin-left: 34.375rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.1;
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
  }
  #cs-footer-1294 .cs-floater:before {
    content: "";
    width: 44.6875rem;
    height: 44.6875rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-footer-1294 .cs-floater:after {
    content: "";
    width: 60.1875rem;
    height: 60.1875rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-1294 .cs-wrapper {
    row-gap: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 5.5rem;
    row-gap: 2.5rem;
  }
  #cs-footer-1294 .cs-nav {
    width: auto;
  }
  #cs-footer-1294 .cs-bottom {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  #cs-footer-1294 .cs-copyright {
    text-align: left;
    width: auto;
    margin-right: auto;
  }
  #cs-footer-1294 .cs-floater {
    display: block;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-1294 .cs-container {
    max-width: 80rem;
    flex-wrap: nowrap;
    /* align everything to the right */
    justify-content: flex-end;
    column-gap: clamp(2.5rem, 6vw, 5.25rem);
  }
  #cs-footer-1294 .cs-logo-group {
    width: 30%;
    max-width: 24.1875rem;
    /* pushes away from everything to the right */
    margin-right: auto;
  }
  #cs-footer-1294 .cs-text {
    width: 100%;
  }
  #cs-footer-1294 .cs-graphic {
    display: block;
  }
}
/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2273 {
    padding: var(--sectionPadding);
    background-color: #fdfaf8;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbsr-2273 .cs-container {
    width: 100%;
    /* changes to 1280px on desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbsr-2273 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #sbsr-2273 .cs-topper {
    color: var(--secondary);
  }
  #sbsr-2273 .cs-title {
    max-width: 30ch;
  }
  #sbsr-2273 .cs-text {
    margin-bottom: 2rem;
  }
  #sbsr-2273 .cs-card-group {
    width: 100%;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 20px - 24px */
    gap: clamp(1.25rem, 1.7vw, 1.5rem);
  }
  #sbsr-2273 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: span 12;
    gap: 1.5rem;
    transition: background-color 0.3s;
  }
  #sbsr-2273 .cs-icon-wrapper {
    width: 3.9375rem;
    height: 3.9375rem;
    border: 1px solid #bababa;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sbsr-2273 .cs-icon {
    width: 2rem;
    height: auto;
    margin: 0;
    display: block;
  }
  #sbsr-2273 .cs-flex {
    flex: 1 1 0;
  }
  #sbsr-2273 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.75rem;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #sbsr-2273 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: auto 0 0 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #sbsr-2273 .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;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbsr-2273 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbsr-2273 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbsr-2273 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(2.8vw, 0.89rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 32.625em;
    height: 38.1875em;
    order: -1;
    position: relative;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbsr-2273 .cs-image-group::before {
    content: "";
    width: 17.5625em;
    height: 21em;
    border: 0.25em solid var(--secondary);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  #sbsr-2273 .cs-picture {
    width: 30.8125em;
    height: 36.4375em;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbsr-2273 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbsr-2273 .cs-flower {
    /* 125px - 309px */
    width: clamp(7.8125rem, 31vw, 19.3125rem);
    height: auto;
    display: block;
    position: absolute;
    /* 0px - 34px */
    top: calc(clamp(0rem, 4vw, 2.125rem) * -1);
    /* 33px - 116px */
    left: calc(clamp(2.0625rem, 12vw, 7.25rem) * -1);
    z-index: 1;
    transform: rotate(18deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 600px) {
  #sbsr-2273 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #sbsr-2273 .cs-item {
    text-align: left;
    align-items: flex-start;
    grid-column: span 6;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbsr-2273 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
  }
  #sbsr-2273 .cs-content {
    text-align: left;
    align-items: flex-start;
    align-self: center;
  }
  #sbsr-2273 .cs-image-group {
    font-size: min(1.3vw, 1rem);
    height: auto;
    min-height: 38.25em;
    order: initial;
  }
  #sbsr-2273 .cs-picture {
    height: auto;
    top: 0;
    bottom: 1.75em;
  }
}
/* Large Desktop - 1400px */
@media only screen and (min-width: 87.5rem) {
  #sbsr-2273 .cs-item {
    flex-direction: row;
  }
  #sbsr-2273 .cs-flower {
    margin-right: -51.5rem;
    top: initial;
    right: 50%;
    bottom: -6.875rem;
    left: initial;
    transform: rotate(246deg);
  }
}
/* ============================================ */
/*                    Pitch                     */
/* ============================================ */
#pitch-200 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
  /* checkmark */
  /* + / − indicator on the right */
}
#pitch-200 .cs-container {
  width: 100%;
  max-width: 50rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
#pitch-200 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#pitch-200 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#pitch-200 .cs-text {
  color: #d6e8c4;
  text-align: center;
}
#pitch-200 .cs-accordion {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#pitch-200 .cs-acc {
  border: 1px solid rgba(192, 245, 61, 0.25);
  border-radius: 0.6rem;
  background: rgba(192, 245, 61, 0.03);
  overflow: hidden;
}
#pitch-200 .cs-acc-head {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  padding-left: 3rem;
  color: var(--bodyTextColorWhite);
  font-size: 1.0625rem;
  font-weight: 600;
  position: relative;
}
#pitch-200 .cs-acc-head::-webkit-details-marker {
  display: none;
}
#pitch-200 .cs-acc-head:before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 0.55rem;
  height: 1rem;
  border: solid var(--primaryLight);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#pitch-200 .cs-acc-head:after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primaryLight);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s;
}
#pitch-200 .cs-acc[open] .cs-acc-head:after {
  content: "−";
}
#pitch-200 .cs-acc-body {
  margin: 0;
  padding: 0 1.25rem 1.25rem 3rem;
  color: #d6e8c4;
  font-size: 1rem;
  line-height: 1.55em;
}
#pitch-200 .cs-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
#pitch-200 .cs-price {
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#pitch-200 .cs-desc {
  color: #d6e8c4;
  font-size: 1rem;
  margin-bottom: 1rem;
}
#pitch-200 .cs-button-solid {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0 2rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 0.5rem;
  color: var(--headerColor);
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  box-shadow: 0 0 30px rgba(250, 255, 61, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#pitch-200 .cs-button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(250, 255, 61, 0.6);
}

/* ============================================ */
/*               What is Storytelling           */
/* ============================================ */
#storytelling-300 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
  /* window + CTA pinned together */
  /* Safari browser mockup */
  /* fixed window; the mock site is taller and scrolls within */
  /* --- mock website inside the browser --- */
  /* palette referenced from the donut landing mockup */
  /* floating rainbow sprinkles (generated in JS) */
  /* DoorDash-style order button */
  /* mock site nav bar */
  /* our story — two column */
  /* mock site footer */
  /* --- featured flavors: two-column donut scroller --- */
}
#storytelling-300 .cs-container {
  width: 100%;
  max-width: 70rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
#storytelling-300 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 46rem;
}
#storytelling-300 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#storytelling-300 .cs-highlight {
  background: var(--bodyTextColorWhite);
  color: #000;
  padding: 0 0.3em;
  border-radius: 0.15em;
}
#storytelling-300 .cs-text {
  color: #d6e8c4;
  text-align: center;
}
#storytelling-300 .cs-explore {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
#storytelling-300 .cs-explore-label {
  color: var(--bodyTextColorWhite);
  font-family: "PP Editorial New", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.1;
  text-align: center;
}
#storytelling-300 .cs-pin-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
#storytelling-300 .cs-explore-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 0 2rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 0.5rem;
  color: var(--headerColor);
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(250, 255, 61, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#storytelling-300 .cs-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 45px rgba(250, 255, 61, 0.6);
}
#storytelling-300 .cs-window {
  width: 100%;
  max-width: 75rem;
  margin: 3rem auto 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(192, 245, 61, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
}
#storytelling-300 .cs-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #2b2b2b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#storytelling-300 .cs-dots {
  display: flex;
  gap: 0.5rem;
}
#storytelling-300 .cs-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: block;
}
#storytelling-300 .cs-dot-red {
  background: #ff5f57;
}
#storytelling-300 .cs-dot-yellow {
  background: #febc2e;
}
#storytelling-300 .cs-dot-green {
  background: #28c840;
}
#storytelling-300 .cs-url {
  flex: 1;
  text-align: center;
  max-width: 24rem;
  margin: 0 auto;
  padding: 0.3rem 1rem;
  border-radius: 0.4rem;
  background: #1a1a1a;
  color: #aaa;
  font-size: 0.85rem;
}
#storytelling-300 .cs-viewport {
  height: 70vh;
  overflow: hidden;
  /* matches the footer so no gap shows below the short footer */
  background: #2b1d24;
}
#storytelling-300 .cs-site {
  position: relative;
  will-change: transform;
}
#storytelling-300 .cs-disclaimer {
  max-width: 75rem;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--primaryLight);
  font-size: 0.9rem;
  font-style: italic;
}
#storytelling-300 .cs-site {
  --ex-bg: #fdf6ef;
  --ex-bg-dark: #f7ece2;
  --ex-text: #2b1d24;
  --ex-muted: #7a6a72;
  --ex-accent: #ec4899;
  --ex-grad: linear-gradient(90deg, #ec4899, #db2777);
}
#storytelling-300 .m-sec {
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
#storytelling-300 .m-hero {
  /* faded shop-interior photo behind a navy wash for legibility */
  background: linear-gradient(160deg, rgba(253, 246, 239, 0.86), rgba(247, 236, 226, 0.92)), url("/images/shop-interior.jpg") center/cover no-repeat;
  color: var(--ex-text);
  position: relative;
  overflow: hidden;
}
#storytelling-300 .m-sprinkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
#storytelling-300 .m-sprinkle {
  position: absolute;
  width: 16px;
  height: 6px;
  border-radius: 4px;
  opacity: 0.9;
}
#storytelling-300 .m-topper, #storytelling-300 .m-topper-dark {
  color: #fff;
  background: var(--ex-grad);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 1rem;
}
#storytelling-300 .m-h1 {
  font-family: "PP Editorial New", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
  color: var(--ex-text);
}
#storytelling-300 .m-h2 {
  font-family: "PP Editorial New", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: var(--ex-text);
}
#storytelling-300 .m-p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.85;
}
#storytelling-300 .m-btn {
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  font-weight: 700;
  color: #fff;
  background: var(--ex-grad);
}
#storytelling-300 .m-btn-dd {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  background: #FF3008;
}
#storytelling-300 .m-dd-logo {
  width: 1.25rem;
  height: 1.25rem;
}
#storytelling-300 .m-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
}
#storytelling-300 .m-nav-brand {
  font-family: "PP Editorial New", serif;
  font-style: italic;
  color: var(--ex-text);
  font-size: 1.1rem;
  white-space: nowrap;
}
#storytelling-300 .m-nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--ex-text);
  font-size: 0.95rem;
  font-weight: 600;
}
#storytelling-300 .m-nav-dd {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FF3008;
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 0.4rem;
}
#storytelling-300 .m-menu {
  background: var(--ex-bg);
  color: var(--ex-text);
  justify-content: center;
  gap: 0.5rem;
  /* gap to the donut slider lives in this section's own (cream) padding,
     so the dark viewport bg never shows through */
  padding-top: 11rem;
  padding-bottom: 9rem;
}
#storytelling-300 .m-menu .m-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
#storytelling-300 .m-menu-grid {
  margin-top: 0.75rem;
  width: 100%;
  max-width: 52rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 40rem) {
  #storytelling-300 .m-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#storytelling-300 .m-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.5rem;
}
#storytelling-300 .m-menu-item img {
  width: clamp(4.5rem, 12vw, 7.5rem);
  height: auto;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
#storytelling-300 .m-menu-item span {
  font-weight: 600;
  font-size: 0.95rem;
}
#storytelling-300 .m-menu-item b {
  color: #db2777;
  font-size: 1rem;
}
#storytelling-300 .m-story {
  background: var(--ex-bg-dark);
  color: var(--ex-text);
  flex-direction: column;
  gap: 2rem;
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
}
@media (min-width: 40rem) {
  #storytelling-300 .m-story {
    flex-direction: row;
    gap: clamp(2rem, 5vw, 4rem);
  }
}
#storytelling-300 .m-story-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
#storytelling-300 .m-story-img img {
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
#storytelling-300 .m-story-info {
  flex: 1;
  text-align: center;
  max-width: 30rem;
}
@media (min-width: 40rem) {
  #storytelling-300 .m-story-info {
    text-align: left;
  }
}
#storytelling-300 .m-story-info .m-topper-dark {
  display: inline-block;
  margin-bottom: 1.25rem;
}
#storytelling-300 .m-story-info .m-h2 {
  color: var(--ex-text);
}
#storytelling-300 .m-footer {
  height: auto; /* slim — no forced 70vh */
  background: #2b1d24;
  color: #d9c9d1;
  justify-content: center;
  padding: 2.25rem clamp(1.5rem, 6vw, 4rem);
}
#storytelling-300 .m-foot-grid {
  width: 100%;
  max-width: 60rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 40rem) {
  #storytelling-300 .m-foot-grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
  }
}
#storytelling-300 .m-foot-h {
  display: block;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
#storytelling-300 .m-foot-hrs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
#storytelling-300 .m-foot-hrs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}
#storytelling-300 .m-foot-hrs b {
  color: #fff;
  white-space: nowrap;
}
#storytelling-300 .m-foot-brand {
  display: block;
  font-family: "PP Editorial New", serif;
  font-style: italic;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
#storytelling-300 .m-foot-links {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  font-weight: 600;
  color: #d9c9d1;
}
#storytelling-300 .m-foot-social {
  display: flex;
  gap: 0.6rem;
}
#storytelling-300 .m-foot-ic {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.14);
  color: var(--ex-accent);
  font-weight: 700;
}
#storytelling-300 .m-foot-map img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(192, 38, 211, 0.25);
  display: block;
}
#storytelling-300 .m-foot-addr {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  text-align: center;
}
#storytelling-300 .m-featured {
  background: var(--ex-bg);
  color: var(--ex-text);
  justify-content: flex-start;
  padding: 2.5rem 0 0;
}
#storytelling-300 .m-flavor-stage {
  position: relative;
  width: 100%;
  flex: 1;
  /* let big donuts bleed past the section; the window edge does the clipping */
  overflow: visible;
}
#storytelling-300 .m-flavor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  padding: 1rem 0;
  flex-direction: column;
}
@media (min-width: 40rem) {
  #storytelling-300 .m-flavor {
    flex-direction: row;
    /* left-anchor so the right side stays open for the next donut to peek */
    justify-content: flex-start;
    padding-left: clamp(1.5rem, 6vw, 5rem);
  }
}
#storytelling-300 .m-flavor-img {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
#storytelling-300 .m-flavor-img img {
  width: clamp(15rem, 42vw, 30rem);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}
#storytelling-300 .m-flavor-info {
  text-align: center;
  max-width: 22rem;
}
@media (min-width: 40rem) {
  #storytelling-300 .m-flavor-info {
    text-align: left;
  }
}
#storytelling-300 .m-flavor-name {
  font-family: "PP Editorial New", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  color: var(--ex-text);
}
#storytelling-300 .m-flavor-desc {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ex-muted);
  margin: 0 0 1.25rem;
}
#storytelling-300 .m-flavor-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 2rem;
  font-weight: 700;
  color: #fff;
  background: var(--ex-grad);
  box-shadow: 0 8px 20px rgba(192, 38, 211, 0.35);
}

/* ============================================ */
/*                 Worry Free                   */
/* ============================================ */
#worryfree-400 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
  /* full-bleed scrolling rows */
  /* track holds two copies; -50% lands exactly on the start of copy two */
  /* each worry shown crossed off — it's handled */
}
#worryfree-400 .cs-container {
  width: 100%;
  max-width: 60rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
#worryfree-400 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 46rem;
}
#worryfree-400 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#worryfree-400 .cs-text {
  color: #d6e8c4;
  text-align: center;
}
#worryfree-400 .cs-marquee {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  /* fade the edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
#worryfree-400 .cs-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}
#worryfree-400 .cs-track-left {
  animation: cs-marquee-left 40s linear infinite;
}
#worryfree-400 .cs-track-right {
  animation: cs-marquee-right 40s linear infinite;
}
@keyframes cs-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes cs-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
#worryfree-400 .cs-worry {
  flex-shrink: 0;
  color: #d6e8c4;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(192, 245, 61, 0.25);
  border-radius: 2.5rem;
  position: relative;
  padding-left: 3.25rem;
  white-space: nowrap;
}
#worryfree-400 .cs-worry:before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 0.55rem;
  height: 1rem;
  border: solid var(--primaryLight);
  border-width: 0 3px 3px 0;
  transform: translateY(-60%) rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  #worryfree-400 .cs-track {
    animation: none;
  }
}

/* ============================================ */
/*              Why You Need a Website          */
/* ============================================ */
#whyweb-500 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
}
#whyweb-500 .cs-container {
  width: 100%;
  max-width: 70rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
#whyweb-500 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 46rem;
}
#whyweb-500 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#whyweb-500 .cs-text {
  color: #d6e8c4;
  text-align: center;
}
#whyweb-500 .cs-reasons {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  #whyweb-500 .cs-reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}
#whyweb-500 .cs-reason {
  padding: 2rem;
  border: 1px solid rgba(192, 245, 61, 0.25);
  border-radius: 0.75rem;
  background: rgba(192, 245, 61, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#whyweb-500 .cs-stat {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#whyweb-500 .cs-reason-p {
  color: #d6e8c4;
  font-size: 1.0625rem;
  line-height: 1.5em;
  margin: 0;
}

/* ============================================ */
/*                   Local                      */
/* ============================================ */
#local-600 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
}
#local-600 .cs-container {
  width: 100%;
  max-width: 70rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 48rem) {
  #local-600 .cs-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
#local-600 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
@media (min-width: 48rem) {
  #local-600 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
}
#local-600 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#local-600 .cs-text {
  color: #d6e8c4;
  text-align: inherit;
  margin-bottom: 2rem;
}
#local-600 .cs-picture {
  flex: 1;
  width: 100%;
  max-width: 32rem;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(192, 245, 61, 0.25);
  aspect-ratio: 3/4;
  background: rgba(192, 245, 61, 0.05);
}
#local-600 .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#local-600 .cs-button-solid {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0 2rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 0.5rem;
  color: var(--headerColor);
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  box-shadow: 0 0 30px rgba(250, 255, 61, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#local-600 .cs-button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(250, 255, 61, 0.6);
}

/* ============================================ */
/*                 Contact Form                 */
/* ============================================ */
#contactform-700 {
  padding: var(--sectionPadding);
  background-color: #0A0D04;
  /* dropdown options render on a light system menu; keep them readable */
}
#contactform-700 .cs-container {
  width: 100%;
  max-width: 40rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
#contactform-700 .cs-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contactform-700 .cs-title {
  color: var(--bodyTextColorWhite);
  max-width: 100%;
}
#contactform-700 .cs-text {
  color: #d6e8c4;
  text-align: center;
}
#contactform-700 .cs-form {
  width: 100%;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  #contactform-700 {
    /* button spans both columns */
  }
  #contactform-700 .cs-form {
    grid-template-columns: 1fr 1fr;
  }
  #contactform-700 .cs-button-solid {
    grid-column: 1/-1;
  }
}
#contactform-700 .cs-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--bodyTextColorWhite);
  font-size: 0.9375rem;
  font-weight: 600;
}
#contactform-700 .cs-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--bodyTextColorWhite);
  background: rgba(192, 245, 61, 0.05);
  border: 1px solid rgba(192, 245, 61, 0.25);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#contactform-700 .cs-input:focus {
  border-color: var(--primaryLight);
  box-shadow: 0 0 0 3px rgba(192, 245, 61, 0.15);
}
#contactform-700 .cs-input option {
  color: #1A2209;
}
#contactform-700 .cs-button-solid {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 2rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  color: var(--headerColor);
  background: linear-gradient(90deg, #C0F53D, #FAFF3D);
  box-shadow: 0 0 30px rgba(250, 255, 61, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#contactform-700 .cs-button-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(250, 255, 61, 0.6);
}
#contactform-700 .cs-success {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
