:root {
  --charcoal: #242421;
  --muted-brass: #8e7a4f;
  --deep-olive: #30342c;
  --bone-warm-ivory: #eeeae3;
  --soft-grey: #b2afa9;
  --antique-gold: #b89a4e;
  --none: #ddd0;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--charcoal);
  color: #575652;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  color: var(--muted-brass);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family:
    PT Serif,
    serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  color: #42423e;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family:
    PT Serif,
    serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.25;
}

h3 {
  color: var(--muted-brass);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family:
    PT Serif,
    serif;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  color: var(--muted-brass);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.6;
}

p {
  margin-bottom: 10px;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
}

.style-full-section {
  justify-content: center;
  align-items: center;
  display: flex;
}

.style-full-section.label {
  background-color: var(--deep-olive);
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 32px;
  padding-right: 45px;
}

.style-heading {
  color: var(--charcoal);
  margin-top: 10px;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 1.4rem;
}

.style-flex-row {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex: 1;
  display: flex;
}

.style-flex-row.is-vertical {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
}

.style-flex-row.center {
  align-items: center;
}

.style-flex-row.v-padding-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

.style-flex-row.logos {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  align-items: center;
}

.color-swatch {
  width: 25%;
  height: 100px;
}

.color-swatch.is-bone {
  background-color: var(--bone-warm-ivory);
}

.color-swatch.is-charcoal {
  background-color: var(--charcoal);
}

.color-swatch.is-soft-grey {
  background-color: var(--soft-grey);
}

.color-swatch.is-antique-gold {
  background-color: var(--antique-gold);
}

.color-swatch.is-muted-brass {
  background-color: var(--muted-brass);
}

.color-swatch.is-deep-olive {
  background-color: var(--deep-olive);
}

.container-small {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.container-small.v-padding {
  padding-top: 32px;
  padding-bottom: 32px;
}

.style-grid {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.divider-line {
  background-color: var(--deep-olive);
  height: 1px;
}

.heading {
  font-family:
    PT Serif,
    serif;
  font-weight: 400;
}

.is-bold {
  font-weight: 700;
}

.text-line-wrap {
  flex-flow: column;
  font-family:
    PT Sans,
    sans-serif;
}

.h1-display {
  font-size: 4rem;
  line-height: 1.1;
}

.is-gold {
  color: var(--muted-brass);
  font-family: "Source Sans 3", sans-serif;
}

.style-body-text {
  color: var(--muted-brass);
  margin-top: 12px;
}

.text-small {
  color: var(--muted-brass);
  margin-top: 12px;
  font-size: 0.75rem;
}

.h1-mega {
  color: var(--bone-warm-ivory);
  letter-spacing: -0.03em;
  font-family:
    PT Serif,
    serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.1;
}

.cta-button {
  color: var(--bone-warm-ivory);
  cursor: pointer;
  background-color: #8e7a4f45;
  border: 1.5px solid #9f8751;
  padding: 11px 53px;
  font-family:
    PT Serif,
    serif;
  font-size: 1.75rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
  box-shadow: inset 0 2px 20px -1px #8e7a4f57;
}

.cta-button:hover {
  box-shadow: inset 0 2px 20px 7px var(--muted-brass);
}

.cta-button.is-alternate {
  background-color: var(--antique-gold);
  box-shadow: none;
  color: var(--charcoal);
  transition:
    color 0.2s,
    box-shadow 0.2s;
}

.cta-button.is-alternate:hover {
  color: var(--bone-warm-ivory);
}

.text-shadow {
  text-shadow: 0 1px 2px #0003;
}

.nav-link {
  color: #30342ccc;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--muted-brass);
}

.nav-link.w--current,
.nav-link.w--current:active {
  color: #30342ccc;
}

.nav-link.w--current:focus,
.nav-link.w--current:focus-visible,
.nav-link.w--current[data-wf-focus-visible] {
  color: var(--muted-brass);
}

.nav-link.w--current:visited {
  color: #30342ccc;
}

.nav-link.nav-cta {
  border: 1px solid var(--muted-brass);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--muted-brass);
  text-underline-offset: 4px;
  background-color: #b89a4e17;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition:
    opacity 0.2s,
    color 0.2s;
}

.nav-link.nav-cta:hover {
  opacity: 0.63;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--muted-brass);
  text-underline-offset: 1px;
  background-color: #c5a46d87;
  padding: 16px 18px;
  text-decoration: none;
}

.nav-link.nav-cta.w--current {
  color: var(--muted-brass);
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-thickness: 0.9px;
}

.style-flex-item {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar {
  z-index: 999;
  background-color: #eeeae3e3;
  width: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  position: absolute;
  top: 0;
}

.navbar-container {
  flex-flow: column;
  display: flex;
}

.nav-menu {
  grid-column-gap: 3.1rem;
  grid-row-gap: 3.1rem;
  justify-content: center;
  padding-bottom: 0;
  display: flex;
}

.nav-logo {
  grid-column-gap: 0.8em;
  grid-row-gap: 0.8em;
  color: var(--muted-brass);
  justify-content: center;
  font-family:
    PT Serif,
    serif;
  font-size: 2rem;
  display: flex;
}

.nav-logo-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
}

.nav-logo-text {
  font-size: 2.2rem;
}

.hero-section {
  width: 100%;
  min-height: 120svh;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  z-index: 1;
  height: 120svh;
  position: absolute;
  inset: 0%;
}

.hero-content-wrapper {
  z-index: 10;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  padding-top: 12rem;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: absolute;
}

.hero-content-container {
  color: var(--bone-warm-ivory);
  justify-content: space-between;
  align-items: flex-end;
  width: 101%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4rem;
  display: flex;
}

.hero-heading-wrapper {
  flex-flow: column;
  max-width: 59ch;
}

.hero-cta-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #eeeae3e6;
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 380px;
  font-size: 1.2rem;
  display: flex;
}

.hero-h1-line {
  color: var(--bone-warm-ivory);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 2rem;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-h1-line.margin-left {
  margin-left: 2rem;
}

.hero-h1-line.margin-left-wide {
  margin-left: 4.8rem;
}

.eyebrow {
  color: var(--muted-brass);
  letter-spacing: 0.12em;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
}

.eyebrow.is-gold {
  color: var(--antique-gold);
  font-size: 1.2vw;
}

.conventional-copy {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  max-width: 390px;
  display: flex;
}

.conventional-video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 760px;
}

.conventional-media {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 80px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  min-height: clamp(420px, 40vw, 620px);
  display: grid;
  overflow: hidden;
}

.our-approach-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.spacer {
  width: 100%;
  min-height: 45px;
}

.benefits-section {
  min-height: 110vh;
  position: relative;
}

.benefits-frame {
  background-image: radial-gradient(circle, #fff0, #242421db);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 110vh;
  display: flex;
}

.benefits-bg-video {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.benefits-content {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.75fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 4vw;
  padding-left: 4vw;
  display: grid;
}

.benefits-list-container {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: column;
  display: flex;
}

.benefits-list-item {
  grid-column-gap: 0.9em;
  grid-row-gap: 0.9em;
  align-items: center;
  display: flex;
}

.bullet-point-container {
  width: 16px;
}

.benefits-text-item {
  color: var(--bone-warm-ivory);
  letter-spacing: 0.02em;
  font-size: 3.3vw;
  font-weight: 300;
}

.testimonial-section {
  background-color: var(--bone-warm-ivory);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 40vh;
  min-height: 560px;
  max-height: 790px;
  padding: 4rem 4rem 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.testimonial-sun-background {
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
  justify-content: flex-end;
  align-items: flex-end;
  width: 35%;
  height: 60%;
  display: block;
  position: absolute;
  inset: auto -5% -4% auto;
  overflow: hidden;
}

.testimonial-left-arrow {
  width: 16px;
  display: flex;
  position: absolute;
  left: -8%;
}

.testimonial-slider {
  background-color: var(--none);
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-arrow-button {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  display: flex;
  position: absolute;
  right: -8%;
}

.gold-arrow-right {
  transform-style: preserve-3d;
  width: 30px;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.testimonial-quote-container {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80ch;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-quote-text {
  color: var(--charcoal);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family:
    PT Serif,
    serif;
  font-size: 2rem;
  font-weight: 400;
}

.slide-nav {
  display: none;
}

.services-container {
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.services-bg-video {
  z-index: 0;
  background-color: #46434336;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.faq-section {
  background-color: #e2e3db;
  min-height: 100vh;
  padding: 10rem 4rem;
}

.faq-answer {
  grid-row-gap: 16px;
  opacity: 0.64;
  color: var(--charcoal);
  grid-template-rows: 0fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  transition-property: opacity, max-height;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  display: grid;
  overflow: hidden;
}

.faq-question-button {
  border-bottom: 0px none var(--deep-olive);
  letter-spacing: 0.004em;
  cursor: pointer;
  justify-content: space-between;
  font-size: 2.2rem;
  font-weight: 400;
  display: flex;
}

.promo-section {
  background-color: #eeeae3;
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
}

.promo-card {
  background-color: #f4f1ec;
  border: 1px solid #30342c61;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  height: 600px;
  padding-top: 1rem;
  display: flex;
  position: absolute;
}

.promo-card.is-active {
  display: flex;
}

.footer {
  background-color: #1c1c1a;
  padding: 4rem 6.1rem;
}

.footer-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.75fr 1.5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.footer-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.footer-link-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-bottom: 1px solid var(--deep-olive);
  color: #7a7978;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 16px;
  display: flex;
}

.footer-link {
  opacity: 0.67;
  color: #7a7978;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #908f8e;
}

.conventional-section {
  background-color: var(--bone-warm-ivory);
  padding-top: clamp(64px, 6vw, 120px);
  padding-left: 2rem;
  position: relative;
  overflow: hidden;
}

.conventional-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.conventional-container {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.conventional-paragraphs {
  max-width: 30ch;
  margin-left: 60px;
}

.approach-container {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.approach-panels {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.approach-panel {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#00000080, #00000080),
    url("../images/tabs-facial-treatment.webp");
  background-position:
    0 0,
    0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  transition: opacity 0.6s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.approach-panel.is-active {
  z-index: 2;
  opacity: 100;
}

.approach-eyebrow {
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  display: flex;
}

.text-is-white {
  color: var(--bone-warm-ivory);
  letter-spacing: 0.04em;
  font-weight: 300;
}

.about-section {
  background-color: var(--charcoal);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-container {
  grid-column-gap: 1.8em;
  grid-row-gap: 1.8em;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.approach-nav-inner {
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}

.approach-nav-container {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  pointer-events: auto;
  grid-template-rows: 0.5fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.approach-pill {
  border: 1px solid var(--antique-gold);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff14;
  border-radius: 999px;
  width: 0%;
  height: 100%;
  transition:
    width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.approach-copy-wrapper {
  grid-column-gap: 0.8em;
  grid-row-gap: 0.8em;
  opacity: 0;
  pointer-events: none;
  color: var(--bone-warm-ivory);
  flex-flow: column;
  max-width: 35ch;
  transition: opacity 0.4s;
}

.approach-copy-wrapper.is-active {
  opacity: 0.8;
  pointer-events: auto;
}

.approach-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.approach-img-wrap {
  position: absolute;
  inset: 0%;
}

.approach-img-overlay {
  background-color: #1d1d1cc7;
  position: absolute;
  inset: 0%;
}

.approach-nav-wrapper {
  pointer-events: auto;
  padding-top: 4rem;
}

.approach-inner-container {
  width: 100%;
  max-width: 1237px;
  margin-left: auto;
  margin-right: auto;
}

.approach-nav-track {
  z-index: 10;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #2424214f;
  border-radius: 50px;
  justify-content: space-between;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  display: flex;
  position: relative;
}

.approach-nav-link {
  z-index: 11;
  color: #fff9;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-radius: 1.5em;
  padding: 1em 5.6em;
  font-family:
    PT Serif,
    serif;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.approach-nav-link.is-active {
  color: var(--bone-warm-ivory);
}

.about-img-wrap {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 240px;
  position: relative;
}

.about-name-wrap {
  color: var(--muted-brass);
  font-family:
    PT Serif,
    serif;
  font-size: 6rem;
}

.about-copy-wrap {
  opacity: 0.8;
  color: var(--bone-warm-ivory);
  letter-spacing: -0.01em;
  font-size: 1.1rem;
  font-weight: 300;
}

.about-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.about-name {
  letter-spacing: 0.2em;
  font-size: 4rem;
  font-weight: 400;
}

.max-width {
  width: 100%;
  max-width: 540px;
}

.about-certification-title {
  opacity: 0.44;
  color: var(--soft-grey);
  letter-spacing: 0.01em;
  font-size: 0.7rem;
  font-weight: 400;
}

.services-section {
  min-height: 100vh;
  padding: 4rem 2rem 10rem;
  position: relative;
}

.video-bg-wrapper {
  z-index: 0;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.services-bg-video-overlay {
  z-index: 1;
  background-color: #00000073;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.services-eyebrow-wrap {
  color: var(--bone-warm-ivory);
  justify-content: center;
  align-items: center;
  min-height: 160px;
  display: flex;
}

.services-content-wrap {
  grid-row-gap: 6rem;
  flex-flow: column;
  padding-left: 102px;
  display: flex;
}

.services-content-wrap.holistic-therapies {
  padding-left: 45%;
}

.service-wrap {
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  color: var(--bone-warm-ivory);
  flex-flow: column;
  max-width: 588px;
  display: flex;
}

.service-wrap.has-border {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
}

.service-name {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 1rem;
}

.services-title {
  color: var(--bone-warm-ivory);
  letter-spacing: 0.016em;
  margin-bottom: 0;
  font-size: 2rem;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container.faq {
  grid-row-gap: 1.2rem;
  flex-flow: column;
  max-width: 1020px;
  display: flex;
}

.faq-heading {
  text-align: center;
  text-transform: none;
  margin-bottom: 16px;
  font-size: 4rem;
}

.all-caps {
  text-transform: uppercase;
}

.faq-question-wrap {
  border-bottom: 2px solid #b2afa9;
  width: 100%;
  padding-bottom: 16px;
}

.faq-question {
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-size: 2rem;
}

.faq-list-container {
  grid-row-gap: 2rem;
}

.faq-answer-p {
  min-height: 0;
  margin-top: 8px;
  margin-bottom: 0;
}

.triangle {
  opacity: 0.8;
  width: 12px;
  transform: rotate(180deg);
}

.section-title-wrap {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0;
}

.promo-carousel-wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-prv-btn {
  border: 1px solid var(--muted-brass);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #e2e3dbd4;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  display: flex;
  position: absolute;
  left: 0;
}

.promo-carousel-track {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 800px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-nxt-btn {
  border: 1px solid var(--muted-brass);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #e2e3dbd4;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  display: flex;
  position: absolute;
  right: 0;
}

.promo-newsletter-wrap {
  padding-top: 0;
  padding-bottom: 4rem;
}

.promo-card-content {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.promo-card-info {
  color: var(--muted-brass);
  flex-flow: column;
  align-items: center;
  max-width: 32ch;
  margin-bottom: 0;
  display: flex;
}

.promo-card-price {
  color: var(--muted-brass);
  letter-spacing: -0.01em;
  margin-bottom: 0;
  padding-top: 0.6rem;
  font-size: 4.6rem;
  font-weight: 300;
  line-height: 1.1;
}

.promo-form {
  border-top: 1px solid var(--soft-grey);
  border-bottom: 1px solid var(--soft-grey);
  max-width: 411px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.form-heading {
  color: #575652;
  margin-bottom: 0.5rem;
  font-family:
    PT Serif,
    serif;
  font-size: 2rem;
}

.form-submit-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  margin-top: 1rem;
  display: grid;
}

.text-field {
  height: 100%;
  margin-bottom: 0;
}

.form-submit-btn {
  background-color: var(--deep-olive);
}

.form {
  color: #575652cf;
  line-height: 1.5;
}

.promo-reg-price {
  color: var(--soft-grey);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.promo-disclaimer {
  color: var(--soft-grey);
  letter-spacing: -0.01em;
  max-width: 46ch;
  margin-bottom: 0.125rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

.promo-illustration {
  opacity: 0.53;
  width: 140px;
}

.promo-illustration.sun {
  opacity: 8;
  width: 160px;
}

.promo-heading {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1.2;
}

.promo-card-copy {
  opacity: 0.66;
  max-width: 28ch;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.3;
}

.promo-h2 {
  letter-spacing: -0.01em;
  font-size: 2.8rem;
}

.footer-copy {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 0.25fr 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.return-to-balance {
  border-bottom: 1px none var(--soft-grey);
  letter-spacing: 0.1em;
  max-width: 24ch;
  margin-top: 0;
  margin-bottom: 6px;
  padding-top: 0;
  font-family:
    PT Serif,
    serif;
  line-height: 1;
}

.footer-disclaimer {
  letter-spacing: 0.008em;
  border-top: 1px #7a7978;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.footer-disclaimer.is-link {
  color: #575652;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-disclaimer.is-link:hover {
  color: #6d6b66;
}

.footer-link-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
}

.footer-logo {
  opacity: 0.85;
  transition: opacity 0.2s;
  display: block;
}

.footer-logo:hover {
  opacity: 1;
}

.hero-p {
  line-height: 1.7;
}

.approach-frame {
  z-index: 2;
  min-height: 100vh;
  position: relative;
}

.approach-copy-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
}

.approach-heading {
  color: var(--bone-warm-ivory);
  font-size: 1.5rem;
}

.approach-content-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 0.85fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 100vh;
  display: grid;
}

.approach-content-top {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.ritual-sub {
  color: #999897;
  letter-spacing: 0.02em;
}

.session-price-block {
  border-bottom: 1px solid var(--bone-warm-ivory);
  display: flex;
}

.session-time-block {
  border-right: 1px solid var(--bone-warm-ivory);
  flex: 1;
  padding-bottom: 0.8rem;
  display: flex;
}

.price-block {
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.session-time {
  padding-top: 0;
}

.acc-item {
  border-bottom: 1px solid var(--bone-warm-ivory);
}

.acc-trigger {
  justify-content: space-between;
  padding-bottom: 1.4rem;
  font-size: 1.4rem;
  display: flex;
}

.acc-content {
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  flex-flow: column;
  height: auto;
  display: flex;
  overflow: hidden;
}

.acc-icon {
  width: 30px;
}

.ritual-bullets {
  padding-left: 1.4rem;
}

.ritual-li {
  list-style-type: disc;
}

.accordion {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.service-btn {
  color: var(--bone-warm-ivory);
  background-color: #7a6944;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.service-btn:hover {
  background-color: var(--muted-brass);
}

.global-nav {
  z-index: 999;
  background-color: #eeeae3e3;
  width: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  position: fixed;
  inset: 0% 0% auto;
}

.booking-section {
  background-color: var(--bone-warm-ivory);
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}

.booking-container {
  z-index: 2;
  height: 100%;
  min-height: 100vh;
  padding-top: 3rem;
  position: relative;
}

.booking-form-container {
  background-color: #f7f7f7;
  padding: 2rem 2.8rem;
}

.booking-heading {
  color: var(--deep-olive);
  text-align: center;
  width: 100%;
  font-size: 2rem;
}

.booking-title-wrap {
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  letter-spacing: 0.001em;
  margin-bottom: 12px;
}

.booking-inner {
  grid-column-gap: 0.8em;
  grid-row-gap: 0.8em;
  flex-flow: column;
  max-width: 375px;
  display: flex;
}

.booking-cta {
  background-color: var(--antique-gold);
  letter-spacing: 0.001em;
  font-weight: 400;
}

.booking-text-field {
  background-color: var(--bone-warm-ivory);
  color: #2424218a;
  border: 1px #000;
  min-height: 48px;
  margin-bottom: 24px;
  padding-left: 14px;
}

.booking-form {
  font-weight: 300;
}

.form-text {
  margin-bottom: 4px;
  font-weight: 400;
}

.form-select-field {
  background-color: var(--bone-warm-ivory);
  color: #2424218a;
  border: 1px #000;
  font-weight: 400;
}

.form-message-field {
  background-color: var(--bone-warm-ivory);
  color: #2424218a;
  border: 1px #000;
  min-height: 160px;
}

.w-form-done {
  background: rgba(197, 164, 109, 0.12);
  color: #8a744e;
  border: 1px solid rgba(197, 164, 109, 0.35);
  padding: 24px;
  text-align: center;
}
.booking-wrap {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.bg-logo {
  z-index: 0;
  background-image: url("../images/Petra-logo-bg-icon.webp");
  background-position: 50% 66%;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0%;
}

.bg-grain {
  z-index: 1;
  pointer-events: auto;
  position: absolute;
  inset: 0%;
}

.arrow-right {
  transform: rotate(180deg);
}

.footer-logo-link {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.footer-text-wrap {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 350px;
  height: 100%;
  margin-top: 1.2rem;
  display: flex;
}

.footer-text {
  font-size: 0.7rem;
}

.footer-text.text-is-white {
  color: #eeeae3b3;
}

.testimonial-frame {
  position: relative;
}

.session-details-text {
  opacity: 0.83;
  color: var(--muted-brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.7;
}

.session-detail-info {
  opacity: 0.8;
  font-size: 0.8rem;
}

.form-divider {
  background-color: var(--soft-grey);
  width: 100%;
  height: 1px;
}

.form-disclaimer {
  opacity: 0.58;
  letter-spacing: 0.008em;
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 400;
}

.hero-bg-video-overlay {
  z-index: 2;
  opacity: 0.33;
  background-image: linear-gradient(#00000059, #00000059);
  position: absolute;
  inset: 0%;
}

.seo-text-section {
  opacity: 1;
  color: #575652cf;
  text-align: left;
  width: 100%;
  max-width: 440px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.h4-bottom-seo {
  color: var(--muted-brass);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.thank-you-hero-section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 120vh;
  max-height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ty-video-wrapper {
  z-index: 1;
  background-image: url("../images/petra-thankyou-bg-poster.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1440px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.ty-video-overlay {
  z-index: 2;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ty-content-wrapper {
  z-index: 3;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  padding: 12vw 2vw 6vw;
  display: flex;
  position: relative;
}

.ty-bg-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.container-large {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.ty-left-column {
  width: 51%;
}

.ty-right-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  color: var(--bone-warm-ivory);
  text-align: center;
  flex-flow: column;
  width: 100%;
  max-width: 25rem;
  font-size: 1.4rem;
  display: flex;
}

.thank-you-h1 {
  color: var(--bone-warm-ivory);
  letter-spacing: -0.001em;
  margin-bottom: 0;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.8;
}

.ty-cta-button {
  color: var(--bone-warm-ivory);
  cursor: pointer;
  background-color: #8e7a4f45;
  border: 1.5px solid #9f8751;
  margin-top: 0.75rem;
  padding: 11px 53px;
  font-family:
    PT Serif,
    serif;
  font-size: 1.75rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
  box-shadow: inset 0 2px 20px -1px #8e7a4f57;
}

.ty-cta-button:hover {
  box-shadow: inset 0 2px 20px 7px var(--muted-brass);
}

.ty-cta-button.is-alternate {
  background-color: var(--antique-gold);
  box-shadow: none;
  color: var(--charcoal);
  transition:
    color 0.2s,
    box-shadow 0.2s;
}

.ty-cta-button.is-alternate:hover {
  color: var(--bone-warm-ivory);
}

.ty-p {
  max-width: 35ch;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

._404-hero-section {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

._404-video-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

._404-bg-video {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

._404-video-overlay {
  z-index: 2;
  background-color: #00000059;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

._404-content-wrapper {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

._404-center-col {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 32rem;
  display: flex;
}

._404container-large-copy {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

._404-container {
  color: var(--bone-warm-ivory);
  text-align: center;
  flex-flow: column;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h1-404 {
  color: var(--bone-warm-ivory);
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 400;
  line-height: 0.9;
}

@media screen and (max-width: 991px) {
  .nav-link {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    color: var(--bone-warm-ivory);
    background-color: #2424219c;
    flex: none;
  }

  .nav-link:focus,
  .nav-link:focus-visible,
  .nav-link[data-wf-focus-visible],
  .nav-link:visited {
    color: var(--bone-warm-ivory);
  }

  .nav-link.nav-cta:hover {
    opacity: 8;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-container {
    max-width: none;
  }

  .nav-menu {
    background-color: #2424217d;
    width: 100%;
    padding-right: 0;
  }

  .nav-logo {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
  }

  .nav-logo-wrapper {
    justify-content: space-between;
  }

  .nav-logo-text {
    font-size: 1.8rem;
  }

  .menu-button.w--open {
    background-color: var(--none);
    color: var(--muted-brass);
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-bg-video {
    height: 100vh;
  }

  .hero-content-wrapper {
    padding-bottom: 4rem;
  }

  .hero-content-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-heading-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .hero-cta-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .hero-h1-line {
    text-align: center;
  }

  .hero-h1-line.margin-left {
    text-align: center;
    margin-left: 0;
  }

  .hero-h1-line.margin-left-wide {
    margin-left: 0;
  }

  .eyebrow.is-gold {
    font-size: 0.85rem;
  }

  .conventional-copy {
    max-width: none;
    margin-left: 2rem;
    padding-left: 1.8rem;
  }

  .conventional-video {
    min-height: auto;
  }

  .conventional-media {
    grid-template-rows: auto;
    grid-template-columns: 0.5fr;
    position: static;
  }

  .our-approach-section {
    min-height: 100vh;
  }

  .benefits-section,
  .benefits-frame {
    min-height: 80vh;
  }

  .benefits-content {
    grid-column-gap: 5px;
    grid-template-columns: 1fr;
    padding-bottom: 12vw;
  }

  .benefits-list-item {
    align-items: center;
  }

  .bullet-point-container {
    width: 16px;
  }

  .benefits-text-item {
    font-size: 2.25rem;
  }

  .testimonial-section {
    height: auto;
    min-height: 40vh;
  }

  .testimonial-slider {
    max-width: 680px;
  }

  .testimonial-quote-container {
    max-width: 60ch;
  }

  .testimonial-quote-text {
    font-size: 1.4rem;
  }

  .promo-card {
    max-width: 330px;
    height: 500px;
  }

  .promo-card.is-active {
    width: 86vw;
    max-width: 360px;
  }

  .footer {
    padding-top: 3rem;
    padding-bottom: 2.3rem;
  }

  .footer-container {
    grid-template-columns: 1.75fr;
    justify-items: center;
  }

  .footer-link-wrap {
    justify-content: center;
  }

  .conventional-section {
    padding-left: 0;
  }

  .conventional-container {
    grid-template-columns: 1fr;
  }

  .conventional-paragraphs {
    max-width: 38ch;
    margin-left: 0;
  }

  .approach-panels {
    min-height: 100vh;
  }

  .approach-eyebrow {
    padding-top: 2rem;
  }

  .about-container {
    grid-column-gap: 1.4em;
    grid-row-gap: 1.4em;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .approach-nav-inner {
    justify-content: center;
    align-items: center;
  }

  .approach-nav-container {
    grid-template-rows: 0.5fr 2fr;
  }

  .approach-copy-wrapper {
    width: 45vw;
  }

  .approach-inner-container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 250px;
    display: flex;
  }

  .approach-nav-track {
    border-radius: 20px;
    flex-flow: column;
    width: 100%;
    max-width: 260px;
  }

  .approach-nav-link {
    text-align: center;
    padding: 1.4em 2.6em;
  }

  .about-copy-wrap {
    font-size: 0.9rem;
  }

  .about-name {
    letter-spacing: 0.2em;
    font-size: 3rem;
  }

  .max-width.heading {
    max-width: 40ch;
  }

  .services-content-wrap {
    padding-left: 0;
  }

  .services-content-wrap.holistic-therapies {
    padding-left: 0%;
  }

  .service-wrap.has-border {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
  }

  .services-title {
    font-size: 1.6rem;
  }

  .triangle {
    opacity: 0.8;
    width: 12px;
  }

  .promo-carousel-track {
    max-width: 991px;
    min-height: auto;
    overflow: visible;
  }

  .promo-card-price {
    font-size: 3.3rem;
  }

  .promo-reg-price {
    font-size: 1rem;
  }

  .promo-disclaimer {
    font-size: 0.7rem;
  }

  .promo-illustration {
    width: 110px;
  }

  .promo-heading {
    font-size: 1.4rem;
  }

  .promo-card-copy {
    font-size: 0.9rem;
  }

  .footer-copy {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    grid-template-columns: 1.25fr;
    width: 100%;
  }

  .return-to-balance {
    max-width: 37ch;
  }

  .footer-link-container {
    align-items: center;
    width: 100%;
    margin-top: 2.8rem;
  }

  .hero-p {
    margin-bottom: 16px;
  }

  .acc-trigger {
    font-size: 1.2rem;
  }

  .acc-content {
    height: 0;
  }

  .ritual-bullets-wrap {
    padding-bottom: 0.8rem;
  }

  .global-nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-text-wrap {
    justify-content: flex-end;
    align-items: center;
    max-width: none;
  }

  .div-block-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .thank-you-hero-section {
    min-height: 100vh;
  }

  .ty-content-wrapper {
    padding-bottom: 0;
  }

  .ty-right-col {
    align-items: center;
    width: 16rem;
    font-size: 0.9rem;
  }

  .thank-you-h1 {
    font-size: 5rem;
    line-height: 0.9;
  }

  .ty-cta-button {
    padding: 1em 2.5em;
    font-size: 1rem;
  }

  ._404-container {
    max-width: 260px;
  }
}

@media screen and (max-width: 767px) {
  .cta-button {
    font-size: 1rem;
  }

  .nav-logo-wrapper {
    justify-content: space-between;
  }

  .hero-content-wrapper {
    min-height: 100vh;
  }

  .hero-content-container {
    padding-bottom: 2rem;
  }

  .hero-cta-wrapper {
    font-size: 0.9rem;
  }

  .hero-h1-line {
    font-size: 2.3rem;
  }

  .eyebrow.is-gold {
    order: -9999;
    font-size: 0.8rem;
  }

  .conventional-copy {
    width: 530px;
  }

  .benefits-content {
    grid-template-columns: 2.5fr;
    grid-auto-columns: 1.75fr;
    padding-left: 4vw;
  }

  .bullet-point-container {
    width: 16px;
  }

  .benefits-text-item {
    font-size: 1.5rem;
  }

  .testimonial-section {
    height: 350px;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .testimonial-sun-background {
    bottom: -14%;
    right: -2%;
  }

  .testimonial-left-arrow {
    inset: auto 24% 0% 0%;
  }

  .testimonial-slider {
    max-width: 540px;
    height: 230px;
  }

  .testimonial-arrow-button {
    inset: auto -24% 0% 0%;
  }

  .testimonial-quote-container {
    height: 200px;
  }

  .testimonial-quote-text {
    font-size: 1.3rem;
  }

  .faq-section {
    padding: 3.4rem 1.8rem;
  }

  .promo-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .approach-eyebrow {
    padding-top: 4rem;
  }

  .about-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .list {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .approach-copy-wrapper {
    width: 55vw;
  }

  .about-name {
    font-size: 2.8rem;
  }

  .faq-heading {
    font-size: 2.4rem;
  }

  .faq-question {
    font-size: 1.4rem;
  }

  .faq-answer-p {
    font-size: 0.9rem;
  }

  .promo-carousel-track {
    height: auto;
  }

  .acc-trigger {
    font-size: 1.2rem;
  }

  .acc-icon {
    width: 24px;
  }

  .testimonial-frame {
    height: 280px;
  }

  .ty-right-col {
    width: 14rem;
  }

  .thank-you-h1 {
    font-size: 4.2rem;
  }

  .ty-cta-button {
    padding-left: 2em;
    padding-right: 2em;
    font-size: 1rem;
  }

  ._404-container {
    max-width: 220px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    max-width: 20ch;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  p {
    font-size: 0.9rem;
  }

  .navbar {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-logo {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
  }

  .nav-logo-text {
    font-size: 1.4rem;
  }

  .menu-button {
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .hero-content-container {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    max-width: 260px;
  }

  .hero-h1-line {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .eyebrow.is-gold {
    font-size: 0.7rem;
  }

  .conventional-copy {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: auto;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .conventional-media {
    grid-template-rows: auto;
    display: flex;
  }

  .our-approach-section {
    min-height: auto;
  }

  .spacer {
    display: none;
  }

  .benefits-section {
    min-height: 70vh;
  }

  .benefits-frame {
    min-height: 70vh;
    padding-bottom: 4vw;
  }

  .benefits-content {
    padding-bottom: 2.2rem;
  }

  .benefits-list-item {
    grid-column-gap: 0.9em;
    grid-row-gap: 0.9em;
  }

  .bullet-point-container {
    width: 16px;
  }

  .benefits-text-item {
    font-size: 1.1rem;
  }

  .testimonial-section {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-sun-background {
    bottom: -21%;
    right: -4%;
  }

  .testimonial-left-arrow {
    width: 24px;
    display: none;
    right: 55%;
  }

  .testimonial-slider {
    min-height: 260px;
  }

  .testimonial-arrow-button {
    display: none;
    right: -55%;
  }

  .testimonial-quote-container {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    max-width: 35ch;
  }

  .testimonial-quote-text {
    margin-bottom: 1rem;
  }

  .faq-section {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .promo-section {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .promo-card.is-active {
    max-width: 260px;
    height: 440px;
  }

  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-container {
    grid-auto-rows: 1fr;
    place-items: center;
  }

  .footer-link-wrap {
    flex-flow: column;
    padding-bottom: 32px;
  }

  .conventional-paragraphs {
    max-width: 33ch;
    margin-left: 0;
  }

  .approach-container {
    min-height: auto;
  }

  .approach-panels {
    min-height: 80vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .approach-panel.is-active {
    min-height: 90vh;
  }

  .approach-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
  }

  .about-section {
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .about-container {
    padding: 6.8rem 2rem;
  }

  .list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    margin-top: 12px;
    display: flex;
  }

  .approach-nav-inner {
    min-height: 32vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .approach-copy-wrapper {
    width: 80vw;
  }

  .approach-copy-wrapper.is-active {
    width: 75vw;
  }

  .approach-nav-wrapper {
    padding-top: 0;
  }

  .approach-nav-track {
    border-radius: 2rem;
    max-width: 90%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .approach-nav-link {
    padding-right: 2.6em;
  }

  .about-name {
    letter-spacing: 0.1em;
    font-size: 3rem;
    line-height: 1.4;
  }

  .about-certification-title {
    max-width: 25ch;
    font-size: 0.8rem;
  }

  .services-section {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .services-eyebrow-wrap {
    min-height: 100px;
  }

  .service-wrap.has-border {
    grid-column-gap: 1.8rem;
    grid-row-gap: 1.8rem;
  }

  .services-title {
    letter-spacing: 0.0156em;
    line-height: 1.5;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .faq-question {
    max-width: 19ch;
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .triangle {
    width: 10px;
  }

  .promo-carousel-wrap {
    height: 600px;
    margin-bottom: 64px;
    overflow: visible;
  }

  .carousel-prv-btn {
    z-index: 5;
    border-style: solid;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.8rem;
    left: 10px;
  }

  .promo-carousel-track {
    align-items: flex-start;
    height: 810px;
    min-height: auto;
    padding-top: 10rem;
  }

  .carousel-nxt-btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.8rem;
    right: 10px;
  }

  .promo-card-price {
    grid-column-gap: 0.8rem;
    grid-row-gap: 0.8rem;
    flex-flow: column;
    height: 95px;
    margin-bottom: 0;
    font-size: 2.4rem;
    line-height: 0.9;
    display: flex;
  }

  .promo-form {
    padding-top: 0.4rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  .form {
    width: 286px;
  }

  .promo-disclaimer {
    max-width: 40ch;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .promo-illustration.sun {
    width: 120px;
  }

  .promo-card-copy {
    margin-bottom: 0;
  }

  .promo-h2 {
    margin-bottom: 24px;
    font-size: 2rem;
  }

  .footer-disclaimer {
    margin-bottom: 2px;
  }

  .hero-p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .approach-frame {
    min-height: auto;
  }

  .approach-copy-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .approach-heading {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .approach-content-container {
    grid-template-rows: 0.35fr 1fr;
    min-height: auto;
  }

  .ritual-sub {
    max-width: 49ch;
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .session-time-block {
    padding-bottom: 0.4rem;
    padding-right: 0.6rem;
  }

  .price-block {
    align-items: center;
  }

  .session-time {
    max-width: 13ch;
  }

  .primary-promise-block {
    line-height: 1.7;
  }

  .acc-trigger {
    font-size: 1.1rem;
  }

  .acc-icon {
    width: 26px;
  }

  .service-btn {
    margin-top: 1rem;
  }

  .global-nav {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .booking-section {
    padding-bottom: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .booking-form-container {
    padding-bottom: 2rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .booking-heading {
    font-size: 1.9rem;
  }

  .footer-text-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: flex-start;
  }

  .testimonial-customer-name {
    font-size: 0.8rem;
  }

  .testimonial-frame {
    height: 230px;
  }

  .session-details-text {
    font-size: 0.8rem;
  }

  .seo-text-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .h4-bottom-seo {
    max-width: 35ch;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .thank-you-hero-section {
    align-items: flex-end;
    min-height: 100vh;
  }

  .ty-content-wrapper {
    min-height: 50vh;
    padding-top: 0;
  }

  .container-large {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    align-items: center;
    height: 100%;
    min-height: 70vh;
    padding-bottom: 2rem;
  }

  .ty-left-column {
    width: auto;
  }

  .ty-right-col {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
  }

  .thank-you-h1 {
    text-align: center;
    margin-top: 40px;
    font-size: 5rem;
    line-height: 1;
  }

  ._404container-large-copy {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    align-items: center;
    height: 100%;
    min-height: 70vh;
    padding-bottom: 2rem;
  }

  .h1-404 {
    font-size: 4.4rem;
  }
}

#w-node-ed862383-c772-5d9a-6bc0-0cecadb21e40-2f876e8f {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ecb58faa-1229-9950-b342-309a27965e68-2f876e8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-fc605276-c64a-54df-ee4a-ac3973e96cd3-2f876e8f,
#w-node-_23a75907-6276-01aa-f3c9-1150fc5b99c5-2f876e8f,
#w-node-ef0a395e-af9c-4756-34ef-447b7f304f87-2f876e8f,
#w-node-e7f2a163-a092-fbd7-7cb9-0ab3bf3bd64e-2f876e8f {
  grid-area: 1 / 1 / 2 / 2;
}

#email.w-node-_2550979b-fede-9223-adfc-f748b3972173-2f876e8f {
  align-self: stretch;
}

#w-node-f538f1e8-0af9-1b23-c371-5d5834fba2ad-2f876e8f {
  place-self: start center;
}

#w-node-_5db88949-b5ff-3e2b-16da-8ddf7b03b363-2f876e8f {
  place-self: center;
}

#w-node-_1b78e6bb-d838-a8b3-0380-d9505de9295c-e34abbc7 {
  place-self: start center;
}

#w-node-_1b78e6bb-d838-a8b3-0380-d9505de92963-e34abbc7 {
  place-self: center;
}

#w-node-_17d432a1-34ba-0236-b8f6-3746609b2737-5e3ef258 {
  place-self: start center;
}

#w-node-_17d432a1-34ba-0236-b8f6-3746609b2740-5e3ef258 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-ed862383-c772-5d9a-6bc0-0cecadb21e40-2f876e8f {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_26e0f886-2b5b-609c-1156-18cac24b5827-2f876e8f {
    align-self: center;
  }

  #w-node-b69ea641-9f73-2aa6-5dca-23003319b3d2-2f876e8f {
    place-self: center;
  }

  #w-node-_5db88949-b5ff-3e2b-16da-8ddf7b03b363-2f876e8f {
    justify-self: center;
  }

  #w-node-_1b78e6bb-d838-a8b3-0380-d9505de9295e-e34abbc7 {
    place-self: center;
  }

  #w-node-_1b78e6bb-d838-a8b3-0380-d9505de92963-e34abbc7 {
    justify-self: center;
  }

  #w-node-_17d432a1-34ba-0236-b8f6-3746609b2739-5e3ef258 {
    place-self: center;
  }

  #w-node-_17d432a1-34ba-0236-b8f6-3746609b2740-5e3ef258 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e7f2a163-a092-fbd7-7cb9-0ab3bf3bd64e-2f876e8f {
    grid-area: 1 / 1 / 2 / 2;
  }
}
