:root {
  --sand: #f4ece4;
  --peach: #ffddc2;
  --coral: #ff807a;
  --bright-pink: #ff2d8e;
  --light-pink: #ffc5de;
  --turquoise: #40c4c2;
  --sky-blue: #8fb5c9;
  --black: #111111;
  --ivory: #faf7f2;
  --taupe: #e7e1da;
  --warm-stone: #d5cec2;
  --greige: #bdb6a8;
  --charcoal: #333333;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 82px;
  padding: 16px 48px;
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid rgba(189, 182, 168, 0.55);
  backdrop-filter: blur(18px);
}

.brand img,
.footer-brand img {
  width: 148px;
  height: auto;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav > a,
.services-menu > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--bright-pink);
}

.services-menu {
  position: relative;
}

.services-menu > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.service-links {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  width: 240px;
  padding: 16px 10px 10px;
  background: var(--black);
  border: 1px solid rgba(255, 197, 222, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.services-menu:hover .service-links,
.services-menu:focus-within .service-links,
.services-menu.is-open .service-links {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.service-links a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
}

.service-links a:hover,
.service-links a:focus-visible {
  background: rgba(255, 128, 122, 0.13);
  color: var(--light-pink);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta,
.primary-button {
  padding: 0 24px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.18);
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--black);
}

.header-cta:hover,
.primary-button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible {
  background: var(--bright-pink);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--peach);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88vh;
  padding: 132px 24px 92px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.74)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.52), rgba(17, 17, 17, 0.16) 58%, rgba(17, 17, 17, 0.32)),
    linear-gradient(90deg, rgba(255, 128, 122, 0.18), rgba(64, 196, 194, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--light-pink);
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.hero .primary-button {
  background: var(--coral);
  color: var(--black);
}

.hero .primary-button:hover,
.hero .primary-button:focus-visible {
  background: var(--light-pink);
}

.hero .secondary-button {
  color: var(--white);
  border-color: rgba(255, 197, 222, 0.6);
}

.hero .secondary-button:hover,
.hero .secondary-button:focus-visible {
  background: rgba(255, 197, 222, 0.14);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 253, 249, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--coral), transparent);
}

.section {
  padding: 96px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.cta-section h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.cta-section > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 1.04rem;
}

.intro-section {
  background: var(--ivory);
}

.feature-grid,
.process-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article,
.process-grid article {
  min-height: 270px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
}

.feature-icon.turquoise {
  background: var(--turquoise);
}

.feature-icon.sky {
  background: var(--sky-blue);
}

h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.feature-grid p,
.process-grid p,
.service-card p,
.service-card li,
blockquote {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
}

.clinician-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 34px;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 24px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

.clinician-feature img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 6px;
}

.clinician-feature h3 {
  max-width: 460px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 400;
}

.clinician-feature p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 1.04rem;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(255, 197, 222, 0.22), transparent 32%),
    linear-gradient(315deg, rgba(64, 196, 194, 0.14), transparent 34%),
    var(--sand);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.specialty-card {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

.specialty-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 28px;
  background: var(--coral);
  border-radius: 999px;
}

.specialty-card:nth-child(2)::before {
  background: var(--turquoise);
}

.specialty-card:nth-child(3)::before {
  background: var(--sky-blue);
}

.specialty-card:nth-child(4)::before {
  background: var(--bright-pink);
}

.specialty-card:nth-child(5)::before {
  background: var(--black);
}

.specialty-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
}

.specialty-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--bright-pink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.specialty-card a:hover,
.specialty-card a:focus-visible {
  color: var(--black);
}

.shop-section {
  background:
    linear-gradient(135deg, rgba(64, 196, 194, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(255, 128, 122, 0.18), transparent 36%),
    var(--ivory);
}

.journey-section {
  background:
    linear-gradient(135deg, rgba(255, 197, 222, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(143, 181, 201, 0.22), transparent 36%),
    var(--white);
}

.quiz-shell,
.offer-ribbon,
.recommendation-panel,
.confirmation-card,
.faq-grid,
.plan-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.quiz-shell {
  display: grid;
  gap: 18px;
}

.quiz-progress {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.48);
  font-weight: 800;
  text-align: center;
}

.quiz-progress i {
  display: block;
  height: 10px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.08);
  border-radius: 999px;
}

.quiz-progress b {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--bright-pink), var(--coral));
  border-radius: inherit;
  transition: width 180ms ease;
}

.quiz-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.is-active {
  display: grid;
  gap: 14px;
}

.quiz-step legend,
.quiz-result h3 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.quiz-step label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  background: var(--ivory);
  border: 1px solid rgba(189, 182, 168, 0.62);
  border-radius: 8px;
  color: rgba(17, 17, 17, 0.72);
  cursor: pointer;
}

.quiz-step input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--bright-pink);
}

.lead-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lead-capture-grid label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
}

.lead-capture-grid span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-capture-grid input,
.lead-capture-grid textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--ivory);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  color: var(--black);
  font: inherit;
}

.lead-capture-grid textarea,
.contact-form textarea {
  resize: vertical;
}

.lead-capture-wide {
  grid-column: 1 / -1;
}

.quiz-submit-note {
  min-height: 22px;
  margin-top: 14px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.9rem;
}

.quiz-step.show-errors label {
  border-color: rgba(255, 45, 142, 0.54);
}

.quiz-result p:not(.eyebrow) {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.quiz-actions,
.quiz-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.quiz-controls {
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(189, 182, 168, 0.52);
}

.quiz-back,
.quiz-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.quiz-next {
  background: var(--black);
  color: var(--white);
}

.quiz-back:hover,
.quiz-back:focus-visible {
  background: var(--peach);
}

.quiz-next:hover,
.quiz-next:focus-visible {
  background: var(--bright-pink);
}

.offer-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 20px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
}

.offer-ribbon strong {
  color: var(--light-pink);
}

.offer-ribbon span {
  color: rgba(255, 253, 249, 0.68);
}

.recommendation-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
}

.recommendation-panel[hidden] {
  display: none;
}

.recommendation-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.recommendation-panel p:not(.eyebrow),
.recommendation-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 20px;
  background: var(--ivory);
  border: 1px solid rgba(189, 182, 168, 0.64);
  border-radius: 8px;
}

.recommendation-card span {
  color: var(--bright-pink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.recommendation-card h4 {
  margin: 0;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.recommendation-card strong {
  display: grid;
  gap: 4px;
  margin-top: auto;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 500;
}

.recommendation-card strong span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.recommendation-card button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.recommendation-card button:hover,
.recommendation-card button:focus-visible {
  background: var(--bright-pink);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 34px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

.shop-label,
.product-tag,
.product-meta span,
.consult-strip span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-label,
.product-tag {
  color: var(--coral);
}

.shop-hero h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
}

.shop-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 249, 0.64);
  font-size: 1.04rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(255, 197, 222, 0.14);
  border-radius: 999px;
  color: rgba(255, 253, 249, 0.72);
}

.shop-hero .primary-button {
  background: var(--coral);
  color: var(--black);
}

.shop-hero-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.shop-hero-actions small {
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-hero-actions strong {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.shop-hero .primary-button:hover,
.shop-hero .primary-button:focus-visible {
  background: var(--light-pink);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 2px solid rgba(189, 182, 168, 0.54);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.plan-card.selected {
  background: #fff8ef;
  border-color: rgba(255, 45, 142, 0.42);
}

.plan-card span {
  color: var(--bright-pink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.plan-card strong {
  margin-top: auto;
  color: var(--black);
  font-size: 1.7rem;
  font-weight: 500;
}

.plan-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.plan-card button:hover,
.plan-card button:focus-visible {
  background: var(--bright-pink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.07);
}

.product-card h3 {
  margin-top: 16px;
}

.product-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.product-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.product-purchase strong {
  font-size: 1.45rem;
  font-weight: 500;
}

.product-card button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.product-card button:hover,
.product-card button:focus-visible {
  background: var(--peach);
  border-color: transparent;
}

.product-card button:disabled {
  border-color: rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.42);
  cursor: not-allowed;
}

.product-card button:disabled:hover {
  background: transparent;
}

.featured-product {
  border-color: rgba(255, 45, 142, 0.34);
}

.caution-product {
  background: #fff8ef;
}

.consult-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.consult-strip article {
  padding: 24px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(189, 182, 168, 0.64);
  border-radius: 8px;
}

.consult-strip span {
  color: var(--bright-pink);
}

.consult-strip h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.consult-strip p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.92rem;
}

.shopify-note {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px 18px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(189, 182, 168, 0.64);
  border-radius: 8px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.92rem;
}

.confirmation-card {
  margin-top: 22px;
  padding: 30px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
}

.confirmation-card h3 {
  color: var(--white);
}

.confirmation-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.confirmation-card li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 253, 249, 0.72);
}

.confirmation-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--turquoise);
  border-radius: 50%;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.faq-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
}

.faq-grid h3 {
  color: var(--bright-pink);
}

.faq-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.shopify-note strong,
.shopify-note code {
  color: var(--black);
}

.card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-brands span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 6px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compliance-section {
  background: var(--white);
}

.legal-hero {
  padding-top: 156px;
  background:
    linear-gradient(135deg, rgba(255, 197, 222, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(64, 196, 194, 0.16), transparent 36%),
    var(--ivory);
}

.legal-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.06;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  padding: 152px 48px 72px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.26)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.62));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  text-shadow: 0 2px 22px rgba(17, 17, 17, 0.46);
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 253, 249, 0.9);
  font-size: 1.12rem;
  text-shadow: 0 1px 14px rgba(17, 17, 17, 0.5);
}

.page-hero .secondary-button {
  border-color: rgba(255, 253, 249, 0.72);
  background: rgba(255, 253, 249, 0.08);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
}

.page-hero .secondary-button:hover,
.page-hero .secondary-button:focus-visible {
  border-color: var(--light-pink);
  background: rgba(255, 197, 222, 0.18);
  color: var(--white);
}

.page-intro,
.detail-grid,
.program-grid,
.about-feature,
.contact-panel {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 44px;
  align-items: start;
}

.page-intro h2 {
  margin-top: 0;
}

.page-intro p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 1.06rem;
}

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

.detail-card,
.program-card,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.detail-card h3,
.program-card h3 {
  margin: 0;
}

.detail-card p,
.program-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.program-card strong {
  display: grid;
  gap: 4px;
  margin-top: auto;
  font-size: 1.45rem;
  font-weight: 500;
}

.program-card strong span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.program-card .primary-button,
.program-card .secondary-button {
  width: fit-content;
}

.shop-product-card[hidden] {
  display: none;
}

.shop-product-card {
  align-content: start;
}

.shop-product-card[data-status="gated"] {
  border-color: rgba(255, 128, 122, 0.42);
}

.shop-product-card .product-meta {
  margin-top: 2px;
}

.shop-product-card .product-meta span {
  min-height: 28px;
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.58);
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-feature img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 8px;
}

.about-feature-text {
  display: grid;
  gap: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel aside {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
}

.contact-panel aside p,
.contact-panel aside a {
  margin: 0;
  color: rgba(255, 253, 249, 0.7);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form .primary-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.policy-grid article {
  min-height: 290px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
}

.policy-grid span {
  color: var(--bright-pink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-grid h3 {
  margin-top: 12px;
}

.policy-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.95rem;
}

.policy-grid a {
  color: var(--black);
  font-weight: 800;
}

.policy-grid a:hover,
.policy-grid a:focus-visible {
  color: var(--bright-pink);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100%;
  padding: 26px;
  background: var(--white);
  box-shadow: -24px 0 70px rgba(17, 17, 17, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(189, 182, 168, 0.56);
}

.cart-header .eyebrow {
  margin-bottom: 6px;
}

.cart-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 22px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--ivory);
  border: 1px solid rgba(189, 182, 168, 0.56);
  border-radius: 8px;
}

.cart-item h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.cart-item p,
.cart-empty,
.cart-footer p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.9rem;
}

.cart-empty {
  padding: 26px 0;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 28px 34px;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  text-align: center;
}

.quantity-control button {
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  cursor: pointer;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  background: var(--peach);
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(189, 182, 168, 0.56);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-total span {
  color: rgba(17, 17, 17, 0.58);
}

.cart-total strong {
  font-size: 1.7rem;
  font-weight: 500;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  background: var(--black);
  border: 0;
  color: var(--white);
}

.checkout-button:hover,
.checkout-button:focus-visible {
  background: var(--bright-pink);
}

.checkout-button:disabled {
  background: rgba(17, 17, 17, 0.18);
  cursor: not-allowed;
}

.floating-cart {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.22);
  font-weight: 800;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.floating-cart strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: var(--coral);
  border-radius: 999px;
  color: var(--black);
}

.floating-cart:hover,
.floating-cart:focus-visible {
  background: var(--bright-pink);
}

.cart-open {
  overflow: hidden;
}

.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
}

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

.service-card div {
  padding: 28px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.service-card:nth-child(2) li::before {
  background: var(--turquoise);
}

.service-card:nth-child(3) li::before {
  background: var(--sky-blue);
}

.service-card span {
  color: var(--bright-pink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-section {
  background: var(--white);
}

.process-grid article {
  box-shadow: none;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-weight: 800;
}

.process-grid article:nth-child(2) span {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.process-grid article:nth-child(3) span {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.lifestyle-section {
  background:
    linear-gradient(135deg, rgba(64, 196, 194, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(255, 197, 222, 0.22), transparent 36%),
    var(--sand);
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.lifestyle-gallery figure {
  min-height: 520px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(189, 182, 168, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

.lifestyle-gallery figure::before {
  content: none;
}

.lifestyle-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.lifestyle-gallery figure:first-child img {
  object-position: center 42%;
}

.stories-section {
  background: var(--black);
  color: var(--white);
}

.stories-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.stories-heading strong {
  display: block;
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 1;
}

.stories-heading span {
  color: rgba(255, 253, 249, 0.62);
  font-size: 1.3rem;
}

figure {
  margin: 0;
  padding: 32px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 197, 222, 0.12);
  border-radius: 8px;
}

figure::before {
  content: "\201C";
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 128, 122, 0.42);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
}

blockquote {
  color: rgba(255, 253, 249, 0.62);
}

figcaption {
  display: grid;
  gap: 3px;
  margin-top: 28px;
}

figcaption strong {
  color: var(--white);
}

figcaption span {
  color: rgba(255, 253, 249, 0.38);
  font-size: 0.82rem;
}

.cta-section {
  padding: 112px 24px;
  background:
    linear-gradient(135deg, rgba(255, 128, 122, 0.26), transparent 40%),
    linear-gradient(315deg, rgba(64, 196, 194, 0.18), transparent 40%),
    var(--ivory);
  text-align: center;
}

.cta-section h2 span {
  color: var(--bright-pink);
}

.cta-section > p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(120px, 0.6fr));
  gap: 42px;
  padding: 64px 48px 30px;
  background: var(--black);
  color: var(--white);
}

.footer-brand a {
  display: inline-flex;
  padding: 12px 14px;
  background: var(--ivory);
  border-radius: 8px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.5);
  font-style: italic;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:not(.footer-brand a) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.92rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--light-pink);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 249, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 249, 0.36);
  font-size: 0.76rem;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    z-index: 100;
    grid-template-columns: 1fr auto;
    padding: 16px 24px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 3;
    flex-wrap: wrap;
    overflow: visible;
    padding-top: 8px;
  }

  .service-links {
    display: none;
    left: 0;
    width: min(320px, calc(100vw - 32px));
    transform: translateY(-8px);
  }

  .services-menu.is-open .service-links,
  .services-menu:focus-within .service-links {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 680px;
    padding-top: 96px;
  }

  .page-hero {
    min-height: 560px;
    padding: 96px 24px 56px;
  }

  .section {
    padding: 72px 24px;
  }

  .section-heading,
  .feature-grid,
  .clinician-feature,
  .page-intro,
  .detail-grid,
  .program-grid,
  .about-feature,
  .contact-panel,
  .service-grid,
  .recommendation-panel,
  .recommendation-grid,
  .lifestyle-gallery,
  .product-grid,
  .plan-grid,
  .faq-grid,
  .consult-strip,
  .specialty-grid,
  .policy-grid,
  .process-grid,
  .story-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .shop-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-hero-actions {
    justify-items: start;
  }

  .clinician-feature img {
    height: 420px;
  }

  .offer-ribbon {
    align-items: start;
    flex-direction: column;
  }

  .about-feature img {
    height: 460px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 124px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .main-nav {
    font-size: 0.7rem;
  }

  .main-nav > a,
  .services-menu > a {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.36rem;
  }

  .hero {
    min-height: 620px;
    padding: 56px 24px 42px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .lead-capture-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .process-grid article,
  .product-card,
  .shop-hero,
  .clinician-feature,
  .detail-card,
  .program-card,
  .contact-form,
  .recommendation-panel,
  .recommendation-card,
  .quiz-card,
  .plan-card,
  .confirmation-card,
  .faq-grid article,
  figure {
    padding: 26px;
  }

  .clinician-feature img {
    height: 340px;
  }

  .lifestyle-gallery figure {
    min-height: 420px;
  }

  .about-feature img {
    height: 380px;
  }

  .product-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .card-brands {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-brands span {
    justify-content: center;
  }

  .product-card button {
    width: 100%;
  }

  .recommendation-card button {
    width: 100%;
  }

  .quiz-actions,
  .quiz-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .quiz-back,
  .quiz-next,
  .quiz-actions button,
  .quiz-actions a {
    width: 100%;
  }

  .cart-panel {
    padding: 22px;
  }

  .floating-cart {
    right: 16px;
    bottom: 16px;
  }

  .footer-bottom {
    display: grid;
  }
}
