:root {
  --plum: #4a235a;
  --plum-deep: #2f123c;
  --plum-soft: #6d3b82;
  --blush: #e8b4a4;
  --blush-deep: #c97c6a;
  --sage: #3d6b54;
  --sage-deep: #2a4d3c;
  --cream: #fbf6f1;
  --paper: #f3e8de;
  --ink: #2b1a22;
  --muted: #6b4e57;
  --line: rgba(74, 35, 90, 0.14);
  --white: #fffdfb;
  --shadow: 0 18px 50px rgba(47, 18, 60, 0.12);
  --radius: 22px;
  --header: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Nunito Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--sage-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1em;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: 0.5rem 0.8rem;
}

.campaign-banner {
  display: none;
  background: var(--plum-deep);
  color: var(--cream);
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.campaign-banner.is-visible {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--plum);
  text-decoration: none;
}

.brand img {
    width: 106px;
    height: 106px;
    margin-bottom: 20px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.brand em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--plum);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone {
  color: var(--plum);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  color: var(--plum);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-deep);
  color: var(--white);
}

.btn-plum {
  background: var(--plum);
  color: var(--white);
}

.btn-plum:hover {
  background: var(--plum-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  box-shadow: inset 0 0 0 2px var(--plum);
}

.btn-light {
  background: var(--white);
  color: var(--plum);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
  background:
    linear-gradient(110deg, rgba(251, 246, 241, 0.94) 0%, rgba(243, 232, 222, 0.78) 48%, rgba(74, 35, 90, 0.28) 100%),
    url("https://static.wixstatic.com/media/11062b_4e53927ddddf4c0ea62e0b87954e44dcf000.jpg/v1/fill/w_1600,h_900,al_c,q_80,enc_jpg/hero.jpg")
      center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero p.lead {
  font-size: 1.2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 16px;
}

.hero-card figcaption {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.proof div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--plum);
}

section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.problem-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.problem-list li,
.check-list li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.problem-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush-deep);
}

.check-list li::before {
  background: var(--sage);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.plan,
.quote,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.card h3,
.plan h3 {
  color: var(--plum);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 0.7rem;
  color: var(--blush-deep);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.plan.featured {
  background: var(--plum);
  color: var(--cream);
  transform: translateY(-8px);
}

.plan.featured h3,
.plan.featured .price,
.plan.featured .muted {
  color: var(--cream);
}

.price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--plum);
  margin: 0.2rem 0;
}

.price span {
  font-size: 1rem;
  font-family: var(--sans);
}

.quote {
  max-width: 46rem;
}

.quote p {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
}

.portrait {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
}

.headshot {
  object-position: center 12%;
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-status {
  min-height: 1.4em;
  font-weight: 700;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--plum);
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.cta-band {
  background: var(--plum-deep);
  color: var(--cream);
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band .btn-light {
  color: var(--ink);
}

.cta-band .btn-light:hover {
  color: var(--plum-deep);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  background: var(--plum-deep);
  color: #f4e4d8;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: var(--blush);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.legal {
  border-top: 1px solid rgba(244, 228, 216, 0.18);
  padding-top: 1rem;
  font-size: 0.88rem;
  color: #d9c3b6;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav,
  .phone {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    inset: calc(var(--header) + 42px) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .split,
  .cards,
  .steps,
  .plans,
  .proof,
  .footer-grid,
  .form-row,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .plan.featured {
    transform: none;
  }

  .header-actions .btn {
    padding: 0.7rem 1rem;
  }
}

/* OWN Your Health–inspired compare theme. Toggle from the footer. */
html.theme-own {
  --plum: #842268;
  --plum-deep: #5c1848;
  --plum-soft: #a33d82;
  --blush: #d97aa8;
  --blush-deep: #c45a8c;
  --sage: #002a35;
  --sage-deep: #001820;
  --cream: #f3f3f3;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --muted: #5a656c;
  --line: rgba(0, 42, 53, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 42, 53, 0.1);
  --radius: 28px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
}

html.theme-own body {
  letter-spacing: 0.01em;
}

html.theme-own .site-header {
  background: rgba(255, 255, 255, 0.94);
}

html.theme-own .nav a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

html.theme-own .eyebrow {
  color: var(--plum);
  letter-spacing: 0.2em;
}

html.theme-own .btn {
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

html.theme-own .btn-primary {
  background: var(--plum);
}

html.theme-own .btn-primary:hover {
  background: var(--plum-deep);
}

html.theme-own .hero {
  background: var(--cream);
  padding: 1.25rem 0 2.75rem;
}

html.theme-own .hero-grid {
  background: #4a1450;
  border-radius: 36px;
  overflow: hidden;
  gap: 0;
  color: #fff;
  box-shadow: var(--shadow);
}

html.theme-own .hero-grid > div:first-child {
  padding: 2.6rem 2.4rem 2.8rem;
}

html.theme-own .hero h1 {
  color: #fff;
}

html.theme-own .hero .lead,
html.theme-own .hero .hero-note {
  color: rgba(255, 255, 255, 0.88);
}

html.theme-own .hero .eyebrow {
  color: #e8a0c4;
}

html.theme-own .hero .btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

html.theme-own .hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

html.theme-own .hero-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

html.theme-own .hero-card img {
  height: 100%;
  min-height: 440px;
  border-radius: 0;
}

html.theme-own .hero-card figcaption {
  color: rgba(255, 255, 255, 0.78);
  padding: 0.85rem 1.2rem 1.1rem;
}

html.theme-own .proof {
  margin-top: 0.5rem;
}

html.theme-own .cta-band {
  background: var(--sage);
}

html.theme-own .site-footer {
  background: var(--sage-deep);
}

html.theme-own .legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.theme-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.32;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  opacity: 0.7;
}

@media (max-width: 900px) {
  html.theme-own .hero-grid > div:first-child {
    padding: 1.6rem 1.3rem;
  }

  html.theme-own .hero-card img {
    min-height: 280px;
  }
}
