:root {
  --mk-cream: #f4eee4;
  --mk-cream-deep: #e9dfd0;
  --mk-paper: #fbf8f2;
  --mk-charcoal: #23211f;
  --mk-gold: #b18a49;
  --mk-gold-bright: #d4b372;
  --mk-line: rgba(35, 33, 31, 0.15);
}

/* 1.6 — social media and live video hub */
.mk-social-hero {
  align-items: stretch;
  background:
    radial-gradient(circle at 20% 15%, rgba(191, 151, 77, 0.18), transparent 34%),
    var(--mk-cream);
  display: grid;
  gap: clamp(42px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  min-height: 720px;
  padding: 150px 8vw 96px;
}

.mk-social-hero-copy {
  align-self: center;
  max-width: 850px;
}

.mk-social-hero .mk-breadcrumbs {
  margin-bottom: 62px;
}

.mk-social-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
  margin: 0;
}

.mk-social-hero h1 em {
  color: var(--mk-gold);
  display: block;
  font-weight: 400;
  margin-top: 0.16em;
}

.mk-social-hero-copy > p:not(.mk-section-kicker) {
  color: rgba(35, 33, 31, 0.66);
  font-size: 17px;
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 690px;
}

.mk-social-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.mk-live-card {
  align-self: center;
  background: var(--mk-charcoal);
  box-shadow: 0 38px 90px rgba(35, 33, 31, 0.19);
  color: var(--mk-paper);
  min-height: 500px;
  padding: clamp(38px, 4vw, 62px);
  position: relative;
}

.mk-live-card::before {
  border: 1px solid rgba(213, 179, 111, 0.28);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.mk-live-card > * {
  position: relative;
  z-index: 1;
}

.mk-live-status {
  align-items: center;
  color: var(--mk-gold-bright);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.13em;
  margin: 0 0 52px;
  text-transform: uppercase;
}

.mk-live-status span {
  animation: mk-live-pulse 1.8s ease-in-out infinite;
  background: #e55745;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(229, 87, 69, 0.12);
  height: 8px;
  width: 8px;
}

@keyframes mk-live-pulse {
  50% {
    box-shadow: 0 0 0 11px rgba(229, 87, 69, 0.03);
    opacity: 0.75;
  }
}

.mk-live-day {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 0;
}

.mk-live-time {
  color: var(--mk-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 12px 0 14px;
}

.mk-live-card > p:not(.mk-live-status, .mk-live-day, .mk-live-time) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin: 0 0 26px;
}

.mk-live-card > strong {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 28px;
  padding-top: 20px;
}

.mk-live-card .mk-button {
  width: 100%;
}

.mk-social-channels,
.mk-video-library {
  padding: 105px 8vw;
}

.mk-social-channels {
  background: var(--mk-paper);
}

.mk-channel-grid {
  background: var(--mk-line);
  border: 1px solid var(--mk-line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 56px;
}

.mk-channel-card {
  align-items: center;
  background: var(--mk-paper);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  min-height: 170px;
  padding: 34px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mk-channel-card:hover {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  transform: translateY(-3px);
  z-index: 1;
}

.mk-channel-card > span {
  color: var(--mk-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mk-channel-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 400;
  margin: 0;
}

.mk-channel-card p {
  color: rgba(35, 33, 31, 0.58);
  font-size: 12px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.mk-channel-card:hover p {
  color: rgba(255, 255, 255, 0.56);
}

.mk-channel-card > b {
  color: var(--mk-gold);
  font-size: 20px;
}

.mk-video-library {
  background: var(--mk-cream-deep);
}

.mk-video-library .mk-video-grid {
  background: transparent;
  padding: 0;
  margin-top: 58px;
}

.mk-video-card {
  background: var(--mk-paper);
}

.mk-video-launch small {
  color: var(--mk-gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.mk-video-frame-instagram .mk-video-launch,
.mk-video-frame-tiktok .mk-video-launch {
  background:
    radial-gradient(circle at 50% 45%, rgba(191, 151, 77, 0.26), transparent 32%),
    linear-gradient(145deg, #161513, #292621);
}

.mk-social-cta {
  align-items: center;
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  padding: 80px 8vw;
}

.mk-social-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.4vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  max-width: 900px;
}

.mk-social-cta .mk-button {
  min-width: 250px;
}

@media (max-width: 1080px) {
  .mk-social-hero {
    grid-template-columns: 1fr;
  }

  .mk-live-card {
    max-width: 600px;
    width: 100%;
  }

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

  .mk-social-cta .mk-button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .mk-social-hero {
    min-height: auto;
    padding: 126px 5vw 70px;
  }

  .mk-social-hero .mk-breadcrumbs {
    margin-bottom: 42px;
  }

  .mk-social-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

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

  .mk-social-hero-actions .mk-button {
    width: 100%;
  }

  .mk-live-card {
    min-height: 460px;
    padding: 40px 34px;
  }

  .mk-social-channels,
  .mk-video-library {
    padding: 74px 5vw;
  }

  .mk-channel-grid {
    grid-template-columns: 1fr;
  }

  .mk-channel-card {
    min-height: 150px;
    padding: 28px;
  }

  .mk-social-cta {
    padding: 66px 5vw;
  }

  .mk-social-cta .mk-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-live-status span {
    animation: none;
  }
}

html {
  scroll-behavior: smooth;
}

body.mk-site {
  background: var(--mk-cream);
  color: var(--mk-charcoal);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  text-rendering: optimizeLegibility;
}

body.mk-site * {
  box-sizing: border-box;
}

body.mk-site a {
  color: inherit;
  text-decoration: none;
}

body.mk-site ::selection {
  background: var(--mk-gold);
  color: #fff;
}

.mk-main {
  background: var(--mk-cream);
  min-height: 100vh;
  overflow: hidden;
}

.mk-header {
  align-items: center;
  display: flex;
  height: 100px;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 5.5vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}

.admin-bar .mk-header {
  top: 32px;
}

.mk-header-solid {
  background: rgba(244, 238, 228, 0.93);
  border-bottom: 1px solid var(--mk-line);
  max-width: none;
  position: fixed;
}

.mk-brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
}

.mk-brand-mark {
  align-items: center;
  border: 1px solid rgba(177, 138, 73, 0.6);
  border-radius: 50%;
  color: var(--mk-gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.04em;
  position: relative;
  width: 42px;
}

.mk-brand-mark::after {
  border: 1px solid rgba(177, 138, 73, 0.18);
  border-radius: 50%;
  content: "";
  inset: 4px;
  position: absolute;
}

.mk-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mk-brand-copy strong,
.mk-footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mk-brand-copy small {
  color: rgba(35, 33, 31, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mk-nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 30px;
  letter-spacing: 0.04em;
}

.mk-nav > a:not(.mk-nav-cta) {
  border-bottom: 1px solid transparent;
  padding: 10px 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.mk-nav > a:not(.mk-nav-cta):hover,
.mk-nav > a.mk-nav-active {
  border-color: var(--mk-gold);
  color: var(--mk-gold);
}

.mk-nav-cta {
  align-items: center;
  border: 1px solid var(--mk-charcoal);
  border-radius: 999px;
  display: inline-flex;
  gap: 22px;
  padding: 13px 18px 13px 21px;
  transition: background 180ms ease, color 180ms ease;
}

.mk-nav-cta:hover {
  background: var(--mk-charcoal);
  color: var(--mk-cream);
}

.mk-hero {
  align-items: center;
  display: grid;
  gap: 5vw;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 100vh;
  overflow: hidden;
  padding: 138px 8vw 72px;
  position: relative;
}

.mk-hero::before {
  background-image: radial-gradient(rgba(35, 33, 31, 0.14) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 60%);
  opacity: 0.32;
  pointer-events: none;
  position: absolute;
}

.mk-hero-copy {
  max-width: 790px;
  position: relative;
  z-index: 3;
}

.mk-eyebrow,
.mk-section-kicker {
  align-items: center;
  color: var(--mk-gold);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.19em;
  margin: 0 0 27px;
  text-transform: uppercase;
}

.mk-eyebrow span {
  background: var(--mk-gold);
  height: 1px;
  width: 35px;
}

.mk-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 6.15vw, 6.65rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin: 0;
  max-width: 850px;
}

.mk-hero h1 em,
.mk-blog-hero h1 em {
  color: var(--mk-gold);
  display: block;
  font-weight: 400;
  margin-top: 0.18em;
}

.mk-hero-intro {
  color: rgba(35, 33, 31, 0.69);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.75;
  margin: 35px 0 0;
  max-width: 650px;
}

.mk-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.mk-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.06em;
  padding: 17px 22px 17px 25px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.mk-button-primary {
  background: var(--mk-charcoal);
  color: var(--mk-paper) !important;
}

.mk-button-primary:hover {
  background: var(--mk-gold);
}

.mk-text-link {
  border-bottom: 1px solid rgba(35, 33, 31, 0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 13px 0 8px;
}

.mk-hero-proof {
  align-items: center;
  color: rgba(35, 33, 31, 0.54);
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 13px;
  letter-spacing: 0.12em;
  margin-top: 44px;
  text-transform: uppercase;
}

.mk-hero-proof i {
  background: var(--mk-gold);
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.mk-hero-visual {
  aspect-ratio: 1;
  display: grid;
  max-width: 620px;
  place-items: center;
  position: relative;
  width: 100%;
  z-index: 2;
}

.mk-visual-aura {
  animation: mk-breathe 5s ease-in-out infinite;
  background: radial-gradient(circle, rgba(212, 179, 114, 0.29), rgba(212, 179, 114, 0.04) 48%, transparent 70%);
  border-radius: 50%;
  inset: 3%;
  position: absolute;
}

.mk-orbit {
  border: 1px solid rgba(35, 33, 31, 0.18);
  border-radius: 50%;
  position: absolute;
}

.mk-orbit::before,
.mk-orbit::after {
  background: var(--mk-gold);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  width: 7px;
}

.mk-orbit-outer {
  inset: 6%;
}

.mk-orbit-outer::before {
  left: 14%;
  top: 15%;
}

.mk-orbit-outer::after {
  bottom: 8%;
  right: 21%;
}

.mk-orbit-middle {
  border-style: dashed;
  inset: 20%;
}

.mk-orbit-middle::before {
  right: -3px;
  top: 45%;
}

.mk-orbit-middle::after {
  bottom: 21%;
  left: 3%;
}

.mk-core {
  align-items: center;
  background: var(--mk-charcoal);
  border: 13px solid rgba(244, 238, 228, 0.78);
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(35, 33, 31, 0.24);
  color: var(--mk-paper);
  display: flex;
  flex-direction: column;
  height: 42%;
  justify-content: center;
  position: relative;
  width: 42%;
}

.mk-core::before {
  border: 1px solid rgba(212, 179, 114, 0.45);
  border-radius: 50%;
  content: "";
  inset: 14px;
  position: absolute;
}

.mk-core span {
  color: var(--mk-gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.mk-core strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
}

.mk-core small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.mk-orbit-label {
  background: rgba(244, 238, 228, 0.94);
  border: 1px solid rgba(177, 138, 73, 0.27);
  border-radius: 999px;
  color: rgba(35, 33, 31, 0.65);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 10px;
  position: absolute;
}

.mk-label-fear { left: -2%; top: 43%; }
.mk-label-anxiety { right: 7%; top: 17%; }
.mk-label-anger { bottom: 13%; left: 14%; }
.mk-label-worth { left: 1%; top: 17%; }
.mk-label-enough { bottom: 10%; right: -3%; }

.mk-visual-note {
  bottom: 3%;
  color: rgba(35, 33, 31, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  left: 50%;
  margin: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}

.mk-method {
  background: var(--mk-paper);
  padding: 115px 8vw 105px;
}

.mk-section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.2fr 0.8fr;
  margin: 0 auto;
  max-width: 1280px;
}

.mk-section-kicker {
  margin-bottom: 18px;
}

.mk-section-heading h2,
.mk-about-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
}

.mk-section-heading > p {
  color: rgba(35, 33, 31, 0.63);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 470px;
}

.mk-steps {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px auto 0;
  max-width: 1280px;
}

.mk-step-card {
  background: var(--mk-cream);
  border: 1px solid rgba(35, 33, 31, 0.07);
  min-height: 340px;
  padding: 30px 30px 34px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mk-step-card:hover {
  box-shadow: 0 22px 60px rgba(35, 33, 31, 0.1);
  transform: translateY(-5px);
}

.mk-step-card.mk-featured {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
}

.mk-step-number {
  color: var(--mk-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.mk-step-symbol {
  align-items: center;
  border: 1px solid rgba(177, 138, 73, 0.38);
  border-radius: 50%;
  color: var(--mk-gold);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  height: 64px;
  justify-content: center;
  margin: 42px 0 34px;
  width: 64px;
}

.mk-step-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 15px;
}

.mk-step-card p {
  color: rgba(35, 33, 31, 0.62);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.mk-step-card.mk-featured p {
  color: rgba(255, 255, 255, 0.59);
}

.mk-principle {
  align-items: center;
  border-bottom: 1px solid var(--mk-line);
  border-top: 1px solid var(--mk-line);
  display: flex;
  gap: 6vw;
  justify-content: space-between;
  margin: 64px auto 0;
  max-width: 1280px;
  padding: 27px 0;
}

.mk-principle p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0;
}

.mk-principle span {
  color: rgba(35, 33, 31, 0.57);
  font-size: 12px;
  line-height: 1.65;
  max-width: 430px;
}

.mk-fit {
  background: var(--mk-cream);
  padding: 115px 8vw 105px;
}

.mk-fit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 68px auto 0;
  max-width: 1280px;
}

.mk-fit-card {
  background: rgba(251, 248, 242, 0.72);
  border: 1px solid rgba(35, 33, 31, 0.09);
  min-height: 210px;
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.mk-fit-card:hover {
  border-color: rgba(177, 138, 73, 0.58);
  transform: translateY(-3px);
}

.mk-fit-card span {
  color: var(--mk-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mk-fit-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  margin: 37px 0 12px;
}

.mk-fit-card p {
  color: rgba(35, 33, 31, 0.61);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.mk-scope-note {
  border-top: 1px solid var(--mk-line);
  color: rgba(35, 33, 31, 0.55);
  font-size: 11px;
  line-height: 1.7;
  margin: 48px auto 0;
  max-width: 1280px;
  padding-top: 22px;
}

.mk-about {
  background: var(--mk-cream-deep);
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 115px 8vw;
}

.mk-about-profile {
  align-self: center;
}

.mk-about-photo {
  margin: 0 0 42px;
  overflow: hidden;
  position: relative;
}

.mk-about-photo::after {
  background: linear-gradient(180deg, transparent 48%, rgba(35, 33, 31, 0.7));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.mk-about-photo img {
  aspect-ratio: 16 / 9;
  display: block;
  filter: saturate(0.82) contrast(1.04);
  height: auto;
  object-fit: cover;
  object-position: center 35%;
  width: 100%;
}

.mk-about-photo figcaption {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 700;
  left: 22px;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.mk-about-panel {
  align-self: center;
  max-width: 760px;
}

.mk-about-copy {
  color: rgba(35, 33, 31, 0.64);
  font-size: 15px;
  line-height: 1.8;
  margin: 30px 0 0;
}

.mk-about blockquote {
  border-left: 2px solid var(--mk-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  margin: 38px 0 0;
  padding: 6px 0 6px 28px;
}

.mk-contact-card {
  background: var(--mk-charcoal);
  box-shadow: 0 30px 80px rgba(35, 33, 31, 0.17);
  color: var(--mk-paper);
  padding: clamp(34px, 4.5vw, 64px);
  position: relative;
}

.mk-contact-card::before {
  border: 1px solid rgba(212, 179, 114, 0.25);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.mk-contact-label {
  color: var(--mk-gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.mk-contact-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.mk-contact-card ul {
  display: grid;
  gap: 15px;
  list-style: none;
  margin: 34px 0;
  padding: 0;
}

.mk-contact-card li {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 13px;
  gap: 12px;
}

.mk-contact-card li span {
  color: var(--mk-gold-bright);
}

.mk-button-light {
  background: var(--mk-cream);
  color: var(--mk-charcoal) !important;
  width: 100%;
}

.mk-button-light:hover {
  background: var(--mk-gold-bright);
}

.mk-contact-card small {
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-size: 9px;
  line-height: 1.5;
  margin: 18px auto 0;
  max-width: 330px;
  text-align: center;
}

.mk-testimonials {
  background: var(--mk-paper);
  padding: 115px 8vw;
}

.mk-testimonial-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 68px auto 0;
  max-width: 1280px;
}

.mk-testimonial-card {
  background: var(--mk-cream);
  border: 1px solid rgba(35, 33, 31, 0.08);
  margin: 0;
  min-height: 240px;
  padding: 34px;
}

.mk-testimonial-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.55;
  margin: 0 0 34px;
}

.mk-testimonial-card cite {
  color: var(--mk-gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mk-blog-hero {
  background: var(--mk-cream);
  padding: 190px 8vw 90px;
}

.mk-blog-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0;
  max-width: 940px;
}

.mk-blog-hero > p:last-child {
  color: rgba(35, 33, 31, 0.62);
  font-size: 16px;
  line-height: 1.75;
  margin: 35px 0 0;
  max-width: 610px;
}

.mk-blog-grid {
  background: var(--mk-paper);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 80px 8vw;
}

.mk-post-card {
  background: var(--mk-cream);
  border: 1px solid rgba(35, 33, 31, 0.08);
  min-height: 310px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mk-post-card:hover {
  box-shadow: 0 22px 60px rgba(35, 33, 31, 0.1);
  transform: translateY(-4px);
}

.mk-post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 4vw, 48px);
}

.mk-post-meta {
  color: var(--mk-gold);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mk-post-meta span + span::before {
  content: "•";
  margin-right: 12px;
}

.mk-post-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 28px 0 18px;
}

.mk-post-card p {
  color: rgba(35, 33, 31, 0.6);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 28px;
}

.mk-read-more {
  color: var(--mk-charcoal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: auto;
  text-transform: uppercase;
}

.mk-read-more b {
  color: var(--mk-gold);
  margin-left: 7px;
}

.mk-pagination {
  background: var(--mk-paper);
  padding: 0 8vw 80px;
}

.mk-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.mk-pagination .page-numbers {
  align-items: center;
  border: 1px solid var(--mk-line);
  display: inline-flex;
  font-size: 11px;
  height: 42px;
  justify-content: center;
  padding: 0 15px;
}

.mk-pagination .current,
.mk-pagination .page-numbers:hover {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
}

.mk-article {
  background: var(--mk-paper);
  padding: 175px 8vw 100px;
}

.mk-article-header {
  margin: 0 auto;
  max-width: 920px;
}

.mk-back-link {
  border-bottom: 1px solid var(--mk-line);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  padding-bottom: 6px;
}

.mk-article-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 25px 0 0;
}

.mk-article-image {
  margin: 65px auto 0;
  max-width: 1120px;
}

.mk-article-image img {
  height: auto;
  width: 100%;
}

.mk-article-content {
  color: rgba(35, 33, 31, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.9;
  margin: 70px auto 0;
  max-width: 760px;
}

.mk-article-content h2,
.mk-article-content h3 {
  color: var(--mk-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  margin-top: 2em;
}

.mk-article-content a {
  color: var(--mk-gold);
  text-decoration: underline;
}

.mk-article-content img {
  height: auto;
  max-width: 100%;
}

.mk-article-cta {
  align-items: center;
  background: var(--mk-cream-deep);
  display: grid;
  gap: 22px;
  grid-template-columns: 0.5fr 1.5fr auto;
  margin: 80px auto 0;
  max-width: 1120px;
  padding: 45px;
}

.mk-article-cta .mk-section-kicker {
  margin: 0;
}

.mk-article-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.mk-footer {
  align-items: center;
  background: var(--mk-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--mk-paper);
  display: grid;
  gap: 26px;
  grid-template-columns: 1.15fr 0.9fr auto 1.25fr auto;
  padding: 40px 8vw;
}

.mk-footer-brand {
  align-items: center;
  display: flex;
  gap: 13px;
}

.mk-footer-brand p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin: 5px 0 0;
  text-transform: uppercase;
}

.mk-footer > a {
  color: var(--mk-gold-bright) !important;
  font-size: 13px;
}

.mk-disclaimer,
.mk-copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  line-height: 1.5;
  margin: 0;
}

.mk-copyright {
  text-align: right;
  white-space: nowrap;
}

.mk-faq {
  background: var(--mk-paper);
  padding: 115px 8vw 105px;
}

.mk-faq-grid {
  border-top: 1px solid var(--mk-line);
  margin: 62px auto 0;
  max-width: 1280px;
}

.mk-faq-item {
  border-bottom: 1px solid var(--mk-line);
}

.mk-faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  gap: 30px;
  justify-content: space-between;
  list-style: none;
  padding: 27px 0;
}

.mk-faq-item summary::-webkit-details-marker {
  display: none;
}

.mk-faq-item summary span {
  align-items: center;
  border: 1px solid rgba(177, 138, 73, 0.52);
  border-radius: 50%;
  color: var(--mk-gold);
  display: flex;
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  height: 36px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 36px;
}

.mk-faq-item[open] summary span {
  transform: rotate(45deg);
}

.mk-faq-item > p {
  color: rgba(35, 33, 31, 0.65);
  font-size: 15px;
  line-height: 1.8;
  margin: -6px 0 28px;
  max-width: 860px;
}

.mk-about-link {
  display: inline-block;
  margin-top: 32px;
}

.mk-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.mk-topic-links a {
  border: 1px solid rgba(35, 33, 31, 0.17);
  border-radius: 999px;
  color: rgba(35, 33, 31, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 13px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.mk-topic-links a:hover {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
}

.mk-breadcrumbs {
  align-items: center;
  color: rgba(35, 33, 31, 0.5);
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 31px;
  text-transform: uppercase;
}

.mk-breadcrumbs a {
  color: var(--mk-gold);
}

.mk-related-posts {
  border-top: 1px solid var(--mk-line);
  margin-top: 80px;
  padding-top: 65px;
}

.mk-related-posts > h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.mk-related-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.mk-related-grid article {
  background: var(--mk-paper);
  border: 1px solid rgba(35, 33, 31, 0.08);
}

.mk-related-grid a {
  display: block;
  height: 100%;
  padding: 25px;
}

.mk-related-grid span,
.mk-related-grid b {
  color: var(--mk-gold);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mk-related-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
  margin: 24px 0 35px;
}

.mk-footer-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-footer-nav a:hover {
  color: var(--mk-gold);
}

.mk-profile {
  padding-top: 100px;
}

.mk-profile-hero {
  background: var(--mk-paper);
  padding: 90px 8vw 105px;
}

.mk-profile-hero-grid {
  align-items: end;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  margin: 0 auto;
  max-width: 1280px;
}

.mk-profile-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.mk-profile-hero h1 em {
  color: var(--mk-gold);
  display: block;
  font-weight: 400;
  margin-top: 0.18em;
}

.mk-profile-hero-grid > p {
  color: rgba(35, 33, 31, 0.65);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.mk-profile-hero > .mk-breadcrumbs {
  margin: 0 auto 70px;
  max-width: 1280px;
}

.mk-story-section {
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(80px, 0.25fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1280px;
  padding: 105px 0;
  width: 84%;
}

.mk-story-index {
  color: rgba(177, 138, 73, 0.33);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
}

.mk-story-copy {
  max-width: 900px;
}

.mk-story-copy h2,
.mk-profile-principles h2,
.mk-profile-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
}

.mk-story-copy > p:not(.mk-section-kicker) {
  color: rgba(35, 33, 31, 0.66);
  font-size: 17px;
  line-height: 1.9;
  margin: 32px 0 0;
}

.mk-story-copy blockquote {
  border-left: 2px solid var(--mk-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  font-style: italic;
  line-height: 1.5;
  margin: 42px 0 0;
  padding: 5px 0 5px 28px;
}

.mk-story-section-dark {
  background: var(--mk-charcoal);
  box-shadow: 0 0 0 100vmax var(--mk-charcoal);
  color: var(--mk-paper);
  clip-path: inset(0 -100vmax);
}

.mk-story-section-dark .mk-story-copy > p:not(.mk-section-kicker) {
  color: rgba(255, 255, 255, 0.64);
}

.mk-experience-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.mk-experience-list li {
  border: 1px solid rgba(212, 179, 114, 0.24);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  padding: 16px;
}

.mk-profile-principles {
  background: var(--mk-paper);
  box-shadow: 0 0 0 100vmax var(--mk-paper);
  clip-path: inset(0 -100vmax);
  margin: 0 auto;
  max-width: 1280px;
  padding: 105px 0;
  width: 84%;
}

.mk-profile-principle-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 55px;
}

.mk-profile-principle-grid article {
  border: 1px solid rgba(35, 33, 31, 0.09);
  min-height: 270px;
  padding: 30px;
}

.mk-profile-principle-grid span {
  color: var(--mk-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mk-profile-principle-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin: 52px 0 15px;
}

.mk-profile-principle-grid p {
  color: rgba(35, 33, 31, 0.61);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.mk-profile-cta {
  align-items: center;
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  margin: 105px auto 0;
  max-width: 1280px;
  padding: clamp(35px, 5vw, 68px);
}

.mk-profile-cta p:not(.mk-section-kicker) {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin: 23px 0 0;
}

.mk-profile-scope {
  margin-bottom: 90px;
}

@keyframes mk-breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.65; }
  50% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 1050px) {
  .mk-hero {
    grid-template-columns: 1fr;
    padding: 150px 7vw 75px;
  }

  .mk-hero-visual {
    margin: 30px auto 0;
    max-width: 580px;
  }

  .mk-section-heading,
  .mk-about,
  .mk-profile-hero-grid,
  .mk-profile-cta {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .mk-fit-grid,
  .mk-testimonial-grid,
  .mk-related-grid,
  .mk-profile-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-article-cta {
    grid-template-columns: 1fr;
  }

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

  .mk-copyright {
    text-align: left;
  }
}

@media (max-width: 782px) {
  .admin-bar .mk-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .mk-header {
    height: 82px;
    padding: 0 5vw;
  }

  .mk-nav > a:not(.mk-nav-cta) {
    display: none;
  }

  .mk-nav-cta {
    font-size: 0;
    height: 43px;
    padding: 0;
    width: 43px;
  }

  .mk-nav-cta span {
    font-size: 18px;
    margin: auto;
  }

  .mk-brand-copy strong {
    font-size: 14px;
  }

  .mk-brand-copy small {
    font-size: 8px;
  }

  .mk-hero {
    min-height: auto;
    padding: 125px 5vw 66px;
  }

  .mk-eyebrow {
    font-size: 9px;
    line-height: 1.5;
  }

  .mk-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
    line-height: 0.98;
  }

  .mk-hero-intro {
    font-size: 15px;
    margin-top: 28px;
  }

  .mk-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .mk-button-primary {
    width: 100%;
  }

  .mk-text-link {
    align-self: center;
  }

  .mk-hero-proof {
    font-size: 8px;
    gap: 9px;
    justify-content: center;
    letter-spacing: 0.08em;
    margin-top: 28px;
  }

  .mk-hero-visual {
    margin-top: 40px;
    width: 105%;
  }

  .mk-core {
    border-width: 8px;
  }

  .mk-core small {
    display: none;
  }

  .mk-orbit-label {
    font-size: 6px;
    padding: 5px 7px;
  }

  .mk-visual-note {
    bottom: -1%;
    font-size: 11px;
  }

  .mk-method,
  .mk-fit,
  .mk-faq,
  .mk-testimonials,
  .mk-about {
    padding: 78px 5vw;
  }

  .mk-section-heading {
    gap: 24px;
  }

  .mk-section-heading h2,
  .mk-about-panel h2 {
    font-size: 2.5rem;
  }

  .mk-steps,
  .mk-blog-grid,
  .mk-fit-grid,
  .mk-testimonial-grid,
  .mk-related-grid,
  .mk-profile-principle-grid {
    grid-template-columns: 1fr;
  }

  .mk-steps {
    margin-top: 44px;
  }

  .mk-fit-grid,
  .mk-testimonial-grid {
    margin-top: 44px;
  }

  .mk-fit-card {
    min-height: 0;
  }

  .mk-about-photo {
    margin-bottom: 34px;
  }

  .mk-step-card {
    min-height: 0;
    padding: 25px;
  }

  .mk-step-symbol {
    height: 50px;
    margin: 28px 0 22px;
    width: 50px;
  }

  .mk-principle {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
  }

  .mk-blog-hero {
    padding: 145px 5vw 65px;
  }

  .mk-blog-hero h1 {
    font-size: 3.1rem;
  }

  .mk-blog-grid {
    padding: 55px 5vw;
  }

  .mk-article {
    padding: 145px 5vw 70px;
  }

  .mk-article-header h1 {
    font-size: 3rem;
  }

  .mk-article-content {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 50px;
  }

  .mk-article-cta {
    margin-top: 55px;
    padding: 30px;
  }

  .mk-faq-grid {
    margin-top: 42px;
  }

  .mk-faq-item summary {
    font-size: 1.25rem;
    padding: 23px 0;
  }

  .mk-profile {
    padding-top: 82px;
  }

  .mk-profile-hero {
    padding: 62px 5vw 75px;
  }

  .mk-profile-hero > .mk-breadcrumbs {
    margin-bottom: 50px;
  }

  .mk-profile-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
  }

  .mk-story-section,
  .mk-profile-principles {
    grid-template-columns: 1fr;
    padding: 78px 5vw;
    width: auto;
  }

  .mk-story-index {
    font-size: 3rem;
  }

  .mk-story-copy h2,
  .mk-profile-principles h2,
  .mk-profile-cta h2 {
    font-size: 2.45rem;
  }

  .mk-story-copy > p:not(.mk-section-kicker) {
    font-size: 16px;
  }

  .mk-experience-list {
    grid-template-columns: 1fr;
  }

  .mk-profile-principle-grid {
    margin-top: 38px;
  }

  .mk-profile-principle-grid article {
    min-height: 0;
  }

  .mk-profile-cta {
    margin: 78px 5vw 0;
    padding: 34px;
  }

  .mk-profile-scope {
    margin: 36px 5vw 70px;
  }

  .mk-footer-nav {
    gap: 14px;
  }

  .mk-footer {
    grid-template-columns: 1fr;
    padding: 40px 5vw;
  }

  .mk-copyright {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mk-visual-aura {
    animation: none;
  }
}

/* 1.4 — conversion journey, topic pages and content hubs */
.mk-topic-section,
.mk-service-content,
.mk-service-steps,
.mk-service-faq,
.mk-tool-section,
.mk-booking-layout,
.mk-case-list,
.mk-video-grid {
  padding: 96px 8vw;
}

.mk-topic-section {
  background: var(--mk-paper);
}

.mk-topic-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  background: var(--mk-line);
  border: 1px solid var(--mk-line);
}

.mk-topic-card {
  background: var(--mk-paper);
  min-height: 280px;
  padding: 34px;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mk-topic-card:hover {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  transform: translateY(-3px);
  z-index: 2;
}

.mk-topic-card > span {
  color: var(--mk-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mk-topic-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 50px 0 18px;
}

.mk-topic-card p {
  color: rgba(35, 33, 31, 0.65);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.mk-topic-card:hover p {
  color: rgba(251, 248, 242, 0.7);
}

.mk-topic-card b {
  bottom: 30px;
  color: var(--mk-gold);
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  right: 32px;
}

.mk-home-path {
  align-items: center;
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr) auto;
  padding: 80px 8vw;
}

.mk-home-path h2,
.mk-resource-links h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.mk-home-path > div > p:last-child {
  color: rgba(251, 248, 242, 0.65);
  line-height: 1.7;
  max-width: 650px;
}

.mk-home-path ol {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-home-path li {
  align-items: center;
  border-bottom: 1px solid rgba(251, 248, 242, 0.16);
  display: flex;
  font-size: 13px;
  gap: 14px;
  padding: 0 0 14px;
}

.mk-home-path li span {
  color: var(--mk-gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mk-resource-links {
  background: var(--mk-cream-deep);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mk-resource-links > a {
  background: var(--mk-cream-deep);
  min-height: 330px;
  padding: 70px 8vw;
  transition: background 180ms ease;
}

.mk-resource-links > a + a {
  border-left: 1px solid var(--mk-line);
}

.mk-resource-links > a:hover {
  background: var(--mk-paper);
}

.mk-resource-links h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 570px;
}

.mk-resource-links span {
  border-bottom: 1px solid var(--mk-charcoal);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 45px;
  padding-bottom: 8px;
}

.mk-inner-hero {
  background: var(--mk-cream);
  padding: 170px 8vw 95px;
}

.mk-inner-hero-compact {
  padding-bottom: 75px;
}

.mk-inner-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0;
  max-width: 1150px;
}

.mk-inner-hero h1 em {
  color: var(--mk-gold);
  display: block;
  font-weight: 400;
}

.mk-inner-hero > p:last-child {
  color: rgba(35, 33, 31, 0.68);
  font-size: 18px;
  line-height: 1.75;
  margin: 36px 0 0;
  max-width: 790px;
}

.mk-inner-hero .mk-breadcrumbs {
  margin-bottom: 55px;
}

.mk-tool-section {
  align-items: start;
  background: var(--mk-paper);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
}

.mk-test-form {
  display: grid;
  gap: 18px;
}

.mk-question-card {
  border: 1px solid var(--mk-line);
  margin: 0;
  padding: 28px;
}

.mk-question-card legend {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.3;
  padding: 0 10px;
}

.mk-question-card legend span {
  color: var(--mk-gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-right: 12px;
}

.mk-answer-grid {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.mk-answer-grid label {
  cursor: pointer;
  display: block;
}

.mk-answer-grid input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.mk-answer-grid label > span {
  border: 1px solid rgba(35, 33, 31, 0.12);
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 15px 18px;
  transition: border-color 150ms ease, background 150ms ease;
}

.mk-answer-grid input:checked + span {
  background: var(--mk-cream);
  border-color: var(--mk-gold);
  box-shadow: inset 4px 0 0 var(--mk-gold);
}

.mk-answer-grid input:focus-visible + span {
  outline: 3px solid rgba(177, 138, 73, 0.35);
  outline-offset: 2px;
}

.mk-submit-button {
  cursor: pointer;
  margin-top: 15px;
  min-height: 54px;
}

.mk-test-error {
  color: #9a2c24;
  font-weight: 700;
}

.mk-result-card,
.mk-process-card,
.mk-focus-card {
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  padding: 42px;
  position: sticky;
  top: 125px;
}

.mk-result-card[hidden] {
  display: none;
}

.mk-result-card h2,
.mk-process-card h2,
.mk-focus-card h2,
.mk-honest-empty h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 25px;
}

.mk-result-summary,
.mk-focus-card > p {
  color: rgba(251, 248, 242, 0.72);
  line-height: 1.72;
}

.mk-result-detail {
  border-top: 1px solid rgba(251, 248, 242, 0.15);
  margin-top: 28px;
  padding-top: 23px;
}

.mk-result-detail h3 {
  color: var(--mk-gold-bright);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.mk-result-detail p {
  line-height: 1.65;
  margin: 0;
}

.mk-result-card .mk-scope-note,
.mk-process-card .mk-scope-note {
  border-color: rgba(251, 248, 242, 0.2);
  color: rgba(251, 248, 242, 0.55);
  margin: 28px 0 0;
  padding: 18px 0 0;
}

.mk-result-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.mk-result-actions .mk-text-link {
  border-color: rgba(251, 248, 242, 0.35);
}

.mk-booking-layout {
  align-items: start;
  background: var(--mk-paper);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
}

.mk-booking-form {
  display: grid;
  gap: 24px;
}

.mk-booking-form label > span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.mk-booking-form input,
.mk-booking-form select {
  appearance: none;
  background: var(--mk-paper);
  border: 1px solid var(--mk-line);
  border-radius: 0;
  color: var(--mk-charcoal);
  font: inherit;
  min-height: 58px;
  padding: 14px 16px;
  width: 100%;
}

.mk-booking-form input:focus,
.mk-booking-form select:focus {
  border-color: var(--mk-gold);
  outline: 3px solid rgba(177, 138, 73, 0.18);
}

.mk-form-privacy {
  color: rgba(35, 33, 31, 0.58);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.mk-process-card ol {
  display: grid;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-process-card li {
  align-items: flex-start;
  border-top: 1px solid rgba(251, 248, 242, 0.15);
  display: flex;
  gap: 18px;
  padding-top: 20px;
}

.mk-process-card li > span {
  color: var(--mk-gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mk-process-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.mk-process-card li p {
  color: rgba(251, 248, 242, 0.62);
  font-size: 13px;
  line-height: 1.6;
  margin: 7px 0 0;
}

.mk-case-list,
.mk-video-grid {
  background: var(--mk-paper);
  display: grid;
  gap: 28px;
}

.mk-case-card {
  border: 1px solid var(--mk-line);
  padding: 44px;
}

.mk-case-card header > span {
  color: var(--mk-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mk-case-card header h2,
.mk-video-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 12px 0 32px;
}

.mk-case-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--mk-line);
}

.mk-case-grid > div {
  background: var(--mk-paper);
  padding: 24px;
}

.mk-case-grid h3 {
  color: var(--mk-gold);
  font-size: 10px;
  letter-spacing: 0.13em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.mk-case-grid p {
  line-height: 1.65;
  margin: 0;
}

.mk-case-card blockquote {
  border-left: 2px solid var(--mk-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.55;
  margin: 32px 0 0;
  padding-left: 24px;
}

.mk-honest-empty {
  border: 1px solid var(--mk-line);
  max-width: 850px;
  padding: 50px;
}

.mk-honest-empty > p:not(.mk-section-kicker) {
  color: rgba(35, 33, 31, 0.65);
  line-height: 1.7;
}

.mk-honest-empty .mk-button {
  margin-top: 18px;
}

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

.mk-video-card {
  border: 1px solid var(--mk-line);
  overflow: hidden;
}

.mk-video-frame {
  aspect-ratio: 16 / 9;
  background: var(--mk-charcoal);
  display: grid;
}

.mk-video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.mk-video-launch {
  align-items: center;
  background: #171614;
  border: 0;
  color: var(--mk-paper);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font: inherit;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.mk-video-launch img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.55;
  position: absolute;
  width: 100%;
}

.mk-video-launch span,
.mk-video-launch strong {
  position: relative;
  z-index: 2;
}

.mk-video-launch span {
  align-items: center;
  background: var(--mk-gold);
  border-radius: 50%;
  display: flex;
  font-size: 20px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.mk-video-launch strong {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mk-video-copy {
  padding: 32px;
}

.mk-video-copy h2 {
  margin-bottom: 18px;
}

.mk-video-copy > div {
  color: rgba(35, 33, 31, 0.68);
  line-height: 1.7;
}

.mk-service-content {
  align-items: start;
  background: var(--mk-paper);
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.85fr;
}

.mk-service-content h2,
.mk-service-steps > h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.mk-signal-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.mk-signal-list li {
  align-items: center;
  border-top: 1px solid var(--mk-line);
  display: flex;
  gap: 16px;
  line-height: 1.5;
  padding: 18px 0;
}

.mk-signal-list span {
  color: var(--mk-gold);
  font-weight: 800;
}

.mk-focus-card {
  position: static;
}

.mk-service-steps {
  background: var(--mk-cream);
}

.mk-service-steps .mk-steps {
  margin-top: 45px;
}

.mk-service-steps .mk-step-card {
  min-height: 300px;
}

.mk-service-faq {
  background: var(--mk-paper);
}

.mk-wide-cta {
  align-items: center;
  background: var(--mk-charcoal);
  color: var(--mk-paper);
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin: 0 8vw;
  padding: 55px;
}

.mk-wide-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  max-width: 800px;
}

.mk-service-scope {
  margin: 34px 8vw 80px;
}

@media (max-width: 980px) {
  .mk-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-home-path,
  .mk-tool-section,
  .mk-booking-layout,
  .mk-service-content {
    grid-template-columns: 1fr;
  }

  .mk-home-path .mk-button {
    justify-self: start;
  }

  .mk-result-card,
  .mk-process-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .mk-topic-section,
  .mk-service-content,
  .mk-service-steps,
  .mk-service-faq,
  .mk-tool-section,
  .mk-booking-layout,
  .mk-case-list,
  .mk-video-grid {
    padding: 70px 5vw;
  }

  .mk-topic-grid,
  .mk-video-grid,
  .mk-case-grid,
  .mk-resource-links {
    grid-template-columns: 1fr;
  }

  .mk-topic-card {
    min-height: 230px;
  }

  .mk-home-path {
    gap: 36px;
    padding: 65px 5vw;
  }

  .mk-resource-links > a {
    min-height: 280px;
    padding: 55px 5vw;
  }

  .mk-resource-links > a + a {
    border-left: 0;
    border-top: 1px solid var(--mk-line);
  }

  .mk-inner-hero {
    padding: 135px 5vw 70px;
  }

  .mk-inner-hero .mk-breadcrumbs {
    margin-bottom: 42px;
  }

  .mk-inner-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .mk-inner-hero > p:last-child {
    font-size: 16px;
  }

  .mk-question-card,
  .mk-case-card,
  .mk-honest-empty,
  .mk-result-card,
  .mk-process-card,
  .mk-focus-card {
    padding: 28px;
  }

  .mk-result-actions,
  .mk-wide-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .mk-result-actions .mk-button,
  .mk-wide-cta .mk-button {
    width: 100%;
  }

  .mk-wide-cta {
    margin: 0 5vw;
    padding: 34px;
  }

  .mk-service-scope {
    margin: 30px 5vw 65px;
  }
}

/* 1.7 — purposeful imagery and real social video covers */
.mk-hero-image {
  align-self: center;
  aspect-ratio: 4 / 5;
  box-shadow: 0 34px 90px rgba(35, 33, 31, 0.2);
  justify-self: center;
  margin: 0;
  max-height: 720px;
  max-width: 580px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}

.mk-hero-image::after {
  border: 1px solid rgba(212, 179, 114, 0.5);
  content: "";
  inset: 15px;
  pointer-events: none;
  position: absolute;
}

.mk-hero-image > img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  width: 100%;
}

.mk-hero-image figcaption {
  align-items: flex-end;
  background: linear-gradient(transparent, rgba(24, 22, 20, 0.84));
  bottom: 0;
  color: var(--mk-paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 0;
  padding: 74px 36px 34px;
  position: absolute;
  right: 0;
  text-align: right;
}

.mk-hero-image figcaption span {
  color: var(--mk-gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mk-hero-image figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.mk-method-illustration {
  border: 1px solid rgba(177, 138, 73, 0.25);
  box-shadow: 0 24px 60px rgba(35, 33, 31, 0.08);
  margin: 58px auto 46px;
  max-width: 1280px;
  overflow: hidden;
}

.mk-method-illustration img {
  display: block;
  height: clamp(270px, 34vw, 520px);
  object-fit: cover;
  width: 100%;
}

.mk-method-illustration figcaption {
  background: #eee4d4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-method-illustration figcaption span {
  color: rgba(35, 33, 31, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 17px 20px;
  text-align: center;
  text-transform: uppercase;
}

.mk-method-illustration figcaption span + span {
  border-left: 1px solid rgba(35, 33, 31, 0.12);
}

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

.mk-video-frame {
  aspect-ratio: 9 / 13;
}

.mk-video-frame-instagram .mk-video-launch::after {
  background: linear-gradient(transparent 48%, rgba(15, 14, 13, 0.88));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.mk-video-frame-instagram .mk-video-launch img {
  opacity: 1;
  object-position: center;
  transition: filter 240ms ease, transform 240ms ease;
}

.mk-video-frame-instagram .mk-video-launch:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.mk-video-frame-instagram .mk-video-launch small {
  background: rgba(24, 22, 20, 0.74);
  left: 14px;
  padding: 8px 9px;
  position: absolute;
  top: 14px;
}

.mk-video-frame-instagram .mk-video-launch span {
  display: none;
}

.mk-video-frame-instagram .mk-video-launch strong {
  bottom: 17px;
  color: var(--mk-gold-bright);
  left: 17px;
  position: absolute;
}

.mk-video-copy h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.mk-video-copy > div {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .mk-video-library .mk-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mk-hero-image {
    margin: 12px auto 0;
    max-height: 600px;
    max-width: 470px;
  }

  .mk-hero-image figcaption {
    padding: 62px 24px 25px;
  }

  .mk-method-illustration {
    margin-top: 42px;
  }

  .mk-method-illustration img {
    height: 250px;
  }

  .mk-method-illustration figcaption span {
    font-size: 8px;
    letter-spacing: 0.06em;
    padding: 14px 7px;
  }

  .mk-video-library .mk-video-grid {
    grid-template-columns: 1fr;
  }

  .mk-video-frame {
    aspect-ratio: 4 / 5;
  }
}
