:root {
  --espresso: #2d241f;
  --espresso-soft: #3b2d27;
  --ivory: #f6f2ec;
  --ivory-strong: #fffdf8;
  --sage: #a7b39a;
  --sage-deep: #5f715e;
  --brass: #c4a46a;
  --charcoal: #383838;
  --muted: #6f6760;
  --line: #ded4c6;
  --rosewood: #7c514a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 36, 31, 0.14);
  --radius: 8px;
  --page-x: min(4rem, 5vw);
  --serif: "Cinzel Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ivory);
  background: var(--espresso);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.offer-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.65rem var(--page-x);
  color: var(--ivory);
  background: var(--espresso);
  border-bottom: 1px solid rgba(196, 164, 106, 0.28);
}

.offer-ribbon p {
  margin: 0;
  font-size: 0.92rem;
}

.offer-ribbon button {
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  color: var(--espresso);
  background: var(--brass);
  border: 0;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.offer-ribbon a {
  color: var(--brass);
  font-weight: 850;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 0.85rem var(--page-x);
  background: rgba(246, 242, 236, 0.94);
  border-bottom: 1px solid rgba(222, 212, 198, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
}

.brand-icon {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(196, 164, 106, 0.42);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--ivory-strong);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.site-nav a,
.footer-links a,
.card-actions a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.card-actions a:hover {
  color: var(--rosewood);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.3rem auto;
  background: var(--espresso);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.76rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--espresso);
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 14px 30px rgba(196, 164, 106, 0.24);
}

.button-primary:hover {
  color: var(--ivory);
  background: var(--espresso);
  border-color: var(--espresso);
}

.button-secondary {
  color: var(--espresso);
  background: var(--ivory-strong);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--sage-deep);
}

.button-tertiary {
  color: var(--espresso);
  background: transparent;
  border-color: rgba(45, 36, 31, 0.22);
}

.button-tertiary:hover {
  color: var(--ivory);
  background: var(--espresso);
  border-color: var(--espresso);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.9fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100svh - 7rem);
  padding: 4.7rem var(--page-x) 3.4rem;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(246, 242, 236, 0.99) 0%, rgba(246, 242, 236, 0.9) 54%, rgba(167, 179, 154, 0.23) 100%),
    var(--ivory);
}

.hero-full-image {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 7rem);
  padding: 5.4rem var(--page-x) 4.2rem;
  background:
    linear-gradient(90deg, rgba(246, 242, 236, 0.97) 0%, rgba(246, 242, 236, 0.86) 34%, rgba(246, 242, 236, 0.34) 58%, rgba(246, 242, 236, 0.02) 77%),
    linear-gradient(0deg, rgba(45, 36, 31, 0.1), rgba(45, 36, 31, 0.04)),
    url("assets/visuals/mks-glowing-skin-hero.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(196, 164, 106, 0.38);
}

.hero-full-image .hero-copy {
  max-width: 44rem;
}

.hero-full-image h1 {
  max-width: 10.5ch;
  text-wrap: balance;
}

.hero-full-image .hero-lede {
  max-width: 38rem;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--rosewood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 12ch;
  font-size: 4.55rem;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.16rem;
}

.hero-lede,
.section-heading > p,
.copy-stack p,
.quiz-copy p,
.booking-section p,
.visit-section p,
.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--charcoal);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.hero-contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-contact-card strong {
  font-family: var(--serif);
  font-weight: 500;
}

.hero-contact-card span,
.hero-contact-card a {
  color: var(--muted);
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.hero-service-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.38rem 0.68rem;
  color: var(--espresso);
  background: rgba(167, 179, 154, 0.22);
  border: 1px solid rgba(95, 113, 94, 0.28);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration: none;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.trust-list li {
  min-height: 8.5rem;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-list span {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-showcase {
  position: relative;
  width: min(100%, 39rem);
  justify-self: end;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 1rem -0.7rem -0.7rem 1.2rem;
  z-index: 0;
  border: 1px solid rgba(196, 164, 106, 0.34);
  border-radius: var(--radius);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border: 1px solid rgba(196, 164, 106, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-logo-card {
  position: absolute;
  right: 1rem;
  bottom: -1.2rem;
  z-index: 2;
  width: min(46%, 15rem);
  margin: 0;
  padding: 0.55rem;
  background: var(--ivory-strong);
  border: 1px solid rgba(196, 164, 106, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(45, 36, 31, 0.18);
}

.hero-logo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.client-path {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 1.5rem;
  align-items: start;
  padding: 2.6rem var(--page-x);
  background: var(--espresso);
  color: var(--ivory);
}

.path-heading h2 {
  max-width: 11ch;
  color: var(--ivory);
  font-size: 2.1rem;
}

.client-path .eyebrow {
  color: var(--brass);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.9rem;
}

.path-grid article {
  min-height: 9.25rem;
  padding: 1.1rem;
  border: 1px solid rgba(246, 242, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.path-grid span {
  display: block;
  margin-bottom: 0.72rem;
  color: var(--brass);
  font-weight: 900;
}

.path-grid p {
  color: rgba(246, 242, 236, 0.78);
  font-size: 0.95rem;
}

.path-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--brass);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.path-link::after {
  content: ">";
  margin-left: 0.45rem;
}

.section {
  padding: 5.2rem var(--page-x);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
  max-width: 76rem;
  margin: 0 auto;
}

.copy-stack {
  display: grid;
  gap: 0.9rem;
}

.copy-stack p {
  margin: 0;
}

.section-heading {
  max-width: 58rem;
  margin: 0 auto 1.45rem;
  text-align: center;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.service-grid,
.journey-grid {
  display: grid;
  max-width: 78rem;
  margin: 0 auto;
  gap: 1rem;
}

.journey-grid article {
  padding: 1.25rem;
  background: var(--ivory-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.journey-grid p,
.service-card p,
.footer-disclaimer,
.result-disclaimer {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(196, 164, 106, 0.08), transparent 42%),
    var(--ivory-strong);
}

.service-menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
  max-width: 68rem;
  margin: 0 auto;
}

.service-menu-panel {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(45, 36, 31, 0.08);
}

.service-menu-top {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.service-menu-top h3 {
  max-width: 26ch;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.service-list {
  display: grid;
  gap: 0.7rem;
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 4.05rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(222, 212, 198, 0.72);
}

.service-list article:last-child {
  border-bottom: 0;
}

.service-list span {
  color: var(--rosewood);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-list h3 {
  font-size: 1.05rem;
}

.service-list strong {
  color: var(--espresso);
  font-size: 0.95rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 15.5rem;
  padding: 1.15rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--brass), var(--rosewood));
}

.service-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(196, 164, 106, 0.15), transparent 46%),
    var(--white);
}

.service-card span {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--rosewood);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 1.2rem;
}

.card-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
}

.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.card-actions a:last-child {
  color: var(--espresso);
  background: rgba(196, 164, 106, 0.24);
  border-color: rgba(196, 164, 106, 0.48);
}

.quiz-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 1fr);
  gap: 3rem;
  align-items: center;
  background: var(--sage);
}

.quiz-copy {
  max-width: 38rem;
}

.quiz-copy .eyebrow,
.quiz-copy h2,
.quiz-copy p {
  color: var(--espresso);
}

.quiz-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.4rem;
  padding: 1rem;
  color: var(--espresso);
  background: rgba(246, 242, 236, 0.58);
  border: 1px solid rgba(45, 36, 31, 0.12);
  border-radius: var(--radius);
}

.quiz-note span {
  color: var(--charcoal);
}

.quiz {
  padding: 1.4rem;
  color: var(--espresso);
  background: var(--ivory-strong);
  border: 1px solid rgba(45, 36, 31, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quiz-topline {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quiz-progress {
  height: 0.48rem;
  overflow: hidden;
  background: #ece3d8;
  border-radius: 999px;
}

.quiz-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--brass);
  transition: width 180ms ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz label,
.quiz legend,
.offer-form label,
.waitlist-form label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 850;
}

.quiz fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.quiz fieldset label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.78rem;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.quiz fieldset label:has(input:checked) {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196, 164, 106, 0.16);
}

input,
select {
  width: 100%;
  min-height: 2.95rem;
  padding: 0.76rem 0.85rem;
  margin-bottom: 1rem;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

input[type="radio"],
input[type="checkbox"] {
  flex: 0 0 auto;
  width: auto;
  min-height: auto;
  margin: 0.22rem 0 0;
  accent-color: var(--sage-deep);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.quiz-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quiz-step > .button {
  margin-top: 1rem;
}

.result h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.result-disclaimer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.inline-error {
  margin: 0.75rem 0 0;
  color: #8b2f25;
  font-weight: 850;
}

.hidden-field {
  display: none;
}

.new-client-section {
  background:
    linear-gradient(180deg, transparent, rgba(196, 164, 106, 0.08)),
    var(--ivory);
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background: var(--ivory-strong);
  border-block: 1px solid var(--line);
}

.about-copy {
  max-width: 72rem;
  margin: 0 auto;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.credential-list li {
  padding: 0.75rem;
  color: var(--charcoal);
  background: var(--ivory);
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.social-proof-section {
  background:
    linear-gradient(180deg, rgba(167, 179, 154, 0.13), transparent 50%),
    var(--ivory-strong);
}

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

.homepage-faq {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-index-grid {
  display: grid;
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.blog-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-index-grid article {
  min-height: 16rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-index-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--rosewood);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-index-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.blog-index-grid h2 {
  font-size: 1.65rem;
}

.blog-index-grid p {
  color: var(--muted);
}

.blog-index-grid a {
  color: var(--espresso);
  font-weight: 850;
  text-decoration: none;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.blog-hero img {
  object-position: center;
}

.blog-article {
  max-width: 54rem;
  margin: 0 auto;
}

.blog-article h1 {
  max-width: 13ch;
  font-size: 4rem;
}

.blog-article h2 {
  margin-top: 2.2rem;
  font-size: 2rem;
}

.blog-article p {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-lede {
  padding: 1.05rem;
  background: var(--ivory-strong);
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-meta {
  color: var(--rosewood);
  font-size: 0.9rem;
  font-weight: 850;
}

.article-cta {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--espresso);
  color: var(--ivory);
  border-radius: var(--radius);
}

.article-cta h2 {
  margin-top: 0;
  color: var(--ivory);
}

.article-cta p {
  color: rgba(246, 242, 236, 0.78);
}

.article-cta .button {
  margin: 0.35rem 0.45rem 0 0;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.social-proof-grid article {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 13.5rem;
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(196, 164, 106, 0.16), transparent 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(45, 36, 31, 0.08);
}

.social-proof-grid article span {
  color: var(--rosewood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-proof-grid article h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.social-proof-grid article p {
  flex: 1;
  margin: 0;
  color: var(--muted);
}

.social-proof-grid .button {
  width: max-content;
}

.results-note {
  display: flex;
  gap: 0.55rem;
  max-width: 78rem;
  margin: 1rem auto 0;
  padding: 1rem;
  color: var(--espresso);
  background: rgba(196, 164, 106, 0.14);
  border: 1px solid rgba(196, 164, 106, 0.35);
  border-radius: var(--radius);
}

.results-note span {
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  background: var(--espresso);
  color: var(--ivory);
}

.booking-section .eyebrow {
  color: var(--brass);
}

.booking-section p {
  color: rgba(246, 242, 236, 0.78);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: stretch;
  background: var(--ivory);
}

.visit-media-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  min-height: 16rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(246, 242, 236, 0.94), rgba(246, 242, 236, 0.84)),
    var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-card span,
.map-card strong,
.map-card small {
  display: block;
}

.map-card span,
.map-card small {
  color: var(--muted);
}

.map-card strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.map-card .button {
  width: max-content;
  margin-top: 0.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 3rem var(--page-x);
  color: var(--ivory);
  background: var(--espresso);
}

.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  max-width: 32rem;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 1rem;
  margin-top: 0.5rem;
  color: rgba(246, 242, 236, 0.68);
  border-top: 1px solid rgba(246, 242, 236, 0.16);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(45, 36, 31, 0.68);
}

.popup[hidden] {
  display: none;
}

.popup-panel {
  position: relative;
  width: min(100%, 32rem);
  max-height: min(90svh, 44rem);
  overflow: auto;
  padding: 1.45rem;
  background:
    linear-gradient(145deg, rgba(196, 164, 106, 0.16), transparent 40%),
    var(--ivory-strong);
  border: 1px solid rgba(196, 164, 106, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.popup-panel h2 {
  font-size: 2.2rem;
}

.popup-panel p {
  color: var(--muted);
}

.popup-panel small {
  display: block;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory-strong);
  font-size: 1.35rem;
  cursor: pointer;
}

.offer-form .button {
  width: 100%;
}

.mobile-booking-bar {
  display: none;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 2.4rem;
  align-items: center;
  padding: 4.6rem var(--page-x);
  background:
    linear-gradient(120deg, rgba(246, 242, 236, 0.97), rgba(246, 242, 236, 0.88)),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  max-width: 12ch;
  font-size: 4rem;
}

.subpage-hero p,
.service-detail p,
.service-detail li {
  color: var(--muted);
}

.subpage-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2.5rem;
  max-width: 76rem;
  margin: 0 auto;
}

.detail-panel {
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(196, 164, 106, 0.16), transparent 48%),
    var(--ivory-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: max-content;
}

.detail-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.detail-panel .button {
  width: 100%;
}

.wellness-hero img {
  aspect-ratio: 4 / 3;
}

.financing-hero {
  background:
    linear-gradient(120deg, rgba(246, 242, 236, 0.97), rgba(167, 179, 154, 0.2)),
    var(--ivory);
}

.financing-hero-card {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  min-height: 28rem;
  padding: 1.25rem;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(196, 164, 106, 0.22), transparent 46%),
    var(--espresso);
  border: 1px solid rgba(196, 164, 106, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.financing-hero-card img {
  width: min(100%, 14rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(196, 164, 106, 0.38);
  border-radius: var(--radius);
}

.financing-hero-card span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.financing-hero-card strong {
  display: block;
  max-width: 20rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.financing-hero-card .button {
  width: max-content;
}

.financing-section {
  background:
    linear-gradient(180deg, rgba(196, 164, 106, 0.1), transparent 42%),
    var(--ivory-strong);
}

.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 78rem;
  margin: 0 auto;
}

.financing-grid article {
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(167, 179, 154, 0.18), transparent 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(45, 36, 31, 0.08);
}

.financing-grid span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
}

.financing-grid h3 {
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.financing-grid p {
  color: var(--muted);
}

.product-partner-hero img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.product-partners-section {
  background:
    linear-gradient(180deg, rgba(196, 164, 106, 0.1), transparent 40%),
    var(--ivory-strong);
}

.product-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.product-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 20rem;
  padding: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(167, 179, 154, 0.18), transparent 46%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(45, 36, 31, 0.08);
}

.product-partner-card.featured {
  grid-column: span 2;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(196, 164, 106, 0.28), transparent 46%),
    var(--espresso);
  border-color: rgba(196, 164, 106, 0.38);
}

.product-partner-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--brass), var(--rosewood));
}

.partner-mark {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  color: var(--espresso);
  background: rgba(196, 164, 106, 0.28);
  border: 1px solid rgba(196, 164, 106, 0.44);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.product-partner-card.featured .partner-mark {
  color: var(--espresso);
  background: var(--brass);
}

.partner-kicker {
  margin: 0;
  color: var(--rosewood);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-partner-card.featured .partner-kicker,
.product-partner-card.featured p {
  color: rgba(246, 242, 236, 0.78);
}

.product-partner-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.product-partner-card p {
  margin: 0;
  color: var(--muted);
}

.product-partner-card strong {
  display: block;
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--espresso);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.product-partner-card.featured strong {
  color: var(--brass);
  border-top-color: rgba(246, 242, 236, 0.18);
}

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

.partner-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 78rem;
  margin: 0 auto;
}

.partner-principles-grid article {
  padding: 1.15rem;
  background: var(--ivory-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.partner-principles-grid span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-principles-grid h3 {
  margin-top: 0.65rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.partner-principles-grid p {
  color: var(--muted);
}

.wellness-service-grid .service-card {
  min-height: 17rem;
}

.wellness-process-section {
  background: var(--ivory-strong);
}

.process-grid,
.pricing-grid {
  display: grid;
  gap: 0.9rem;
  max-width: 78rem;
  margin: 0 auto;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article,
.pricing-grid article,
.medical-disclaimer {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(45, 36, 31, 0.08);
}

.process-grid span,
.pricing-grid span {
  display: block;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid h3,
.pricing-grid strong,
.medical-disclaimer h2 {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.process-grid p,
.pricing-grid p,
.medical-disclaimer p {
  color: var(--muted);
}

.pricing-grid strong {
  color: var(--espresso);
  font-size: 2rem;
}

.safety-section {
  background:
    linear-gradient(135deg, rgba(167, 179, 154, 0.16), transparent 44%),
    var(--ivory);
}

.medical-disclaimer {
  max-width: 58rem;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.faq-list details {
  padding: 1rem;
  background: var(--ivory-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero,
  .client-path,
  .section-grid,
  .quiz-section,
  .about-section,
  .booking-section,
  .visit-section,
  .visit-media-card,
  .service-menu-layout,
  .subpage-hero,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-full-image {
    min-height: calc(100svh - 6.5rem);
    background:
      linear-gradient(90deg, rgba(246, 242, 236, 0.98) 0%, rgba(246, 242, 236, 0.9) 43%, rgba(246, 242, 236, 0.28) 72%),
      url("assets/visuals/mks-glowing-skin-hero.png") center / cover no-repeat;
  }

  .hero-showcase {
    justify-self: start;
    width: min(100%, 34rem);
  }

  .path-heading h2 {
    max-width: 100%;
  }

  .service-grid,
  .financing-grid,
  .partner-principles-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-partner-card.featured {
    grid-column: auto;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    justify-content: stretch;
    padding-top: 0.4rem;
  }

  .site-nav.open a {
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 740px) {
  body {
    padding-bottom: 4.35rem;
  }

  .offer-ribbon {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .site-header {
    gap: 0.7rem;
    padding-block: 0.72rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-icon {
    width: 2.8rem;
    height: 2.8rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.05rem;
  }

  h2,
  .subpage-hero h1 {
    font-size: 2.28rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-full-image {
    align-items: flex-end;
    min-height: calc(100svh - 7.5rem);
    padding-top: 6rem;
    background:
      linear-gradient(180deg, rgba(246, 242, 236, 0.64) 0%, rgba(246, 242, 236, 0.98) 58%, rgba(246, 242, 236, 1) 100%),
      url("assets/visuals/mks-glowing-skin-hero.png") 62% top / cover no-repeat;
  }

  .hero-actions,
  .quiz-actions,
  .card-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .quiz .button,
  .card-actions a,
  .social-proof-grid .button {
    width: 100%;
  }

  .trust-list,
  .hero-service-pills,
  .path-grid,
  .service-grid,
  .service-list article,
  .journey-grid,
  .credential-list,
  .blog-index-grid,
  .financing-grid,
  .product-partner-grid,
  .partner-principles-grid,
  .process-grid,
  .pricing-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(13rem, 52%);
    margin: -3.2rem 1rem 0 auto;
  }

  .results-note {
    display: block;
  }

  .blog-article h1 {
    font-size: 2.65rem;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .section,
  .client-path,
  .subpage-hero {
    padding-top: 2.65rem;
    padding-bottom: 2.65rem;
  }

  .quiz {
    padding: 1rem;
  }

  .popup-panel {
    padding: 1.15rem;
  }

  .popup-panel h2 {
    font-size: 1.85rem;
  }

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

  .financing-hero-card {
    min-height: auto;
  }

  .financing-hero-card .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: 0.55rem;
    padding: 0.72rem;
    background: rgba(246, 242, 236, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-booking-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-booking-bar a:first-child {
    color: var(--espresso);
    background: var(--ivory-strong);
    border: 1px solid var(--line);
  }

  .mobile-booking-bar a:nth-child(2) {
    color: var(--espresso);
    background: rgba(167, 179, 154, 0.28);
    border: 1px solid rgba(95, 113, 94, 0.24);
  }

  .mobile-booking-bar a:last-child {
    color: var(--espresso);
    background: var(--brass);
    border: 1px solid var(--brass);
  }
}
