:root {
  --ink:       #101418;
  --ink-2:     #202831;
  --gold:      #B88732;
  --gold-2:    #E2C16A;
  --paper:     #FFFFFF;
  --bone:      #F4F6F2;
  --hairline:  #DFE4DC;
  --green:     #1F6F5B;
  --mute:      #6D7378;
  --text:      #101418;
  --muted:     #6D7378;
  --line:      #DFE4DC;
  --ivory:     #F8FAF6;
  --rust:      #7A2D21;
  --shadow:    0 20px 60px rgba(16, 20, 24, 0.08);
  --radius:    8px;
  --maxw:      1440px;
  --gutter:    clamp(20px, 4vw, 48px);
  --container-pad: max(var(--gutter), calc((100% - var(--maxw)) / 2));

  /* ── Spacing Scale ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 120px;

  /* ── Fonts ── */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

.about-mission,
.common-matters,
.business-support,
.audience-support,
.confidential-knowledge {
  padding: 110px var(--container-pad);
}

.about-mission {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 1px;
  background: var(--line);
}

.about-panel,
.mission-panel,
.common-matters,
.business-support,
.audience-support,
.confidential-knowledge article {
  background: #fff;
}

.about-panel,
.mission-panel {
  min-height: 390px;
  padding: 56px;
}

.about-panel span,
.mission-panel span,
.confidential-knowledge span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-panel h2,
.common-matters h2,
.business-copy h2,
.audience-support h2,
.confidential-knowledge h2 {
  margin: 18px 0 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.mission-panel h3 {
  margin: 18px 0 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 360;
  line-height: 1.05;
}

.about-panel p,
.mission-panel p,
.matter-grid p,
.business-copy p,
.business-list span,
.audience-support p,
.audience-support li,
.confidential-knowledge p {
  color: var(--muted);
  line-height: 1.72;
}

.about-panel p,
.mission-panel p,
.business-copy p,
.audience-support p,
.confidential-knowledge p {
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.common-matters {
  background:
    linear-gradient(180deg, #fff 0%, #f7faf5 100%);
}

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

.matter-grid article {
  min-height: 255px;
  padding: 32px;
  background: #fff;
}

.matter-grid svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  stroke-width: 1.7;
}

.matter-grid h3 {
  margin: 28px 0 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 380;
  line-height: 1.08;
}

.business-support {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
  background: #fff;
}

.business-copy {
  position: sticky;
  top: 120px;
}

.business-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.business-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 32px;
  background:
    linear-gradient(90deg, #fff, rgba(244, 246, 242, 0.76)),
    #fff;
}

.business-list strong {
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 420;
  line-height: 1.1;
}

.audience-support {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  background:
    linear-gradient(110deg, #f7faf5 0%, #fff 58%);
}

.audience-support ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.audience-support li {
  min-height: 104px;
  padding: 26px;
  color: #073629;
  background: #fff;
  font-weight: 750;
}

.audience-support li::before {
  display: block;
  width: 26px;
  height: 2px;
  margin-bottom: 18px;
  content: "";
  background: var(--gold);
}

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

.confidential-knowledge article {
  min-height: 405px;
  padding: 54px;
}

.confidential-knowledge article:first-child {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 54, 41, 0.98), rgba(3, 31, 24, 0.98)),
    #031f18;
}

.confidential-knowledge article:first-child h2,
.confidential-knowledge article:first-child span {
  color: var(--gold-2);
}

.confidential-knowledge article:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.confidential-knowledge a {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.scope-guarantee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .about-mission,
  .business-support,
  .audience-support,
  .confidential-knowledge {
    grid-template-columns: 1fr;
  }

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

  .business-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .about-mission,
  .common-matters,
  .business-support,
  .audience-support,
  .confidential-knowledge {
    padding: 34px 18px;
  }

  .managed-process,
  .concierge-promise,
  .support-promise,
  .final-cta {
    display: grid;
  }

  .service-row:nth-child(1),
  .service-row:nth-child(2),
  .service-row:nth-child(3),
  .service-row:nth-child(4),
  .service-row:nth-child(5) {
    display: grid;
    order: initial;
  }

  .service-row:nth-child(1) > span::before {
    content: "01";
  }

  .service-row:nth-child(2) > span::before {
    content: "02";
  }

  .service-row:nth-child(3) > span::before {
    content: "03";
  }

  .service-row:nth-child(4) > span::before {
    content: "04";
  }

  .service-row:nth-child(5) > span::before {
    content: "05";
  }

  .about-panel,
  .mission-panel,
  .matter-grid article,
  .confidential-knowledge article {
    min-height: auto;
    padding: 24px 20px;
  }

  .about-panel h2,
  .common-matters h2,
  .business-copy h2,
  .audience-support h2,
  .confidential-knowledge h2 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.18;
  }

  .mission-panel h3 {
    font-family: var(--font-body);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .about-panel p,
  .mission-panel p,
  .business-copy p,
  .audience-support p,
  .confidential-knowledge p {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .matter-grid,
  .business-list,
  .audience-support ul,
  .confidential-knowledge {
    grid-template-columns: 1fr;
    margin-top: 20px;
    box-shadow: none;
  }

  .matter-grid article {
    min-height: auto;
  }

  .matter-grid svg {
    width: 24px;
    height: 24px;
  }

  .matter-grid h3 {
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 850;
  }

  .matter-grid p,
  .business-list span {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .business-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .business-list strong {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 850;
  }

  .audience-support {
    gap: 20px;
  }

  .audience-support ul {
    margin-top: 0;
  }

  .audience-support li {
    min-height: auto;
    padding: 17px 18px;
    font-size: 0.9rem;
  }

  .audience-support li::before {
    width: 20px;
    margin-bottom: 12px;
  }

  .scope-guarantee {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .scope-guarantee img {
    display: none;
  }

  .scope-guarantee .button {
    width: 100%;
    justify-content: center;
  }

  .managed-process {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 18px;
  }

  .process-visual {
    min-height: 220px;
    border-radius: 0 0 0 42px;
  }

  .milestone-line {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .milestone-line li {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .milestone-line span {
    font-size: 1.45rem;
  }

  .process-disclaimer {
    padding-top: 16px;
    font-size: 0.82rem;
  }

  .concierge-promise {
    padding: 38px 18px 32px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .promise-grid article {
    min-height: auto;
    padding: 22px 18px;
  }

  .promise-grid h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 850;
  }

  .promise-grid p,
  .promise-note {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .business-support {
    gap: 22px;
  }

  .confidential-knowledge {
    gap: 1px;
  }

  .confidential-knowledge a {
    font-size: 0.72rem;
  }

.final-cta {
    padding: 44px 18px 132px;
  }
}

/* Homepage v2: scoped redesign based on reference composition */
.mmlc-home {
  padding-bottom: 120px;
}

.home .whatsapp-chat {
  display: none;
}

.mmlc-home .mmlc-home-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px var(--gutter);
}

.mmlc-home .mmlc-home-section__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 380;
  line-height: 1.02;
}

.mmlc-home .mmlc-home-section__head p {
  max-width: 740px;
  margin: 16px 0 0;
  color: #576069;
  font-size: 1.04rem;
  line-height: 1.72;
}

.mmlc-home .mmlc-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: end;
  max-width: var(--maxw);
  min-height: 760px;
  margin: 0 auto;
  padding: 82px var(--gutter) 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.mmlc-home .mmlc-home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.82) 64%, rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
  z-index: 1;
}

.mmlc-home .mmlc-home-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mmlc-home .mmlc-home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  transform: translateY(var(--parallax-y, 0));
}

.mmlc-home .mmlc-home-hero__copy,
.mmlc-home .mmlc-home-intake {
  position: relative;
  z-index: 2;
}

.mmlc-home .mmlc-home-hero__copy {
  max-width: 640px;
}

.mmlc-home .mmlc-home-hero__copy h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.7vw, 5.05rem);
  font-weight: 370;
  line-height: 0.95;
  text-wrap: balance;
}

.mmlc-home .mmlc-home-hero__copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4f5963;
  font-size: 1.06rem;
  line-height: 1.72;
}

.mmlc-home .mmlc-home-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mmlc-home .mmlc-home-hero__actions .button svg,
.mmlc-home .mmlc-submit-button svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.mmlc-home .mmlc-home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mmlc-home .mmlc-home-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: #073629;
  font-size: 0.9rem;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(184, 135, 50, 0.42);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(16, 20, 24, 0.08);
}

.mmlc-home .mmlc-home-trust svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.mmlc-home .mmlc-home-intake {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 24px 22px;
  background: linear-gradient(140deg, rgba(7, 54, 41, 0.96), rgba(2, 36, 28, 0.94));
  border: 1px solid rgba(226, 193, 106, 0.36);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(8, 22, 17, 0.28);
}

.mmlc-home .mmlc-home-intake__heading {
  grid-column: 1 / -1;
}

.mmlc-home .mmlc-home-intake__heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.mmlc-home .mmlc-home-intake__heading p {
  margin: 8px 0 0;
  color: rgba(247, 250, 246, 0.85);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mmlc-home .mmlc-home-intake label {
  display: grid;
  gap: 6px;
  color: rgba(247, 250, 246, 0.95);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mmlc-home .mmlc-home-intake .is-wide {
  grid-column: 1 / -1;
}

.mmlc-home .mmlc-home-intake input,
.mmlc-home .mmlc-home-intake select,
.mmlc-home .mmlc-home-intake textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  padding: 12px 14px;
  color: #fefefe;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.93rem;
  line-height: 1.4;
}

.mmlc-home .mmlc-home-intake textarea {
  min-height: 88px;
  resize: vertical;
}

.mmlc-home .mmlc-home-intake input::placeholder,
.mmlc-home .mmlc-home-intake textarea::placeholder {
  color: rgba(247, 250, 246, 0.74);
}

.mmlc-home .mmlc-home-intake select option {
  color: #101418;
}

.mmlc-home .mmlc-submit-button {
  width: 100%;
  color: #101418;
  background: linear-gradient(90deg, #c7933f, #e1bc6a);
  border: 1px solid rgba(236, 199, 124, 0.95);
  font-weight: 750;
}

.mmlc-home .mmlc-home-intake .form-status {
  margin: 0;
  color: rgba(247, 250, 246, 0.95);
  font-size: 0.85rem;
}

.mmlc-home .mmlc-home-intake .form-status a {
  color: #f0cc83;
  font-weight: 700;
}

.mmlc-home .mmlc-home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mmlc-home .mmlc-home-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(16, 20, 24, 0.06);
}

.mmlc-home .mmlc-home-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 420;
  line-height: 1.05;
}

.mmlc-home .mmlc-home-card p {
  margin: 0;
  color: #55616d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.mmlc-home .mmlc-home-card a {
  width: fit-content;
  color: #0d4d3b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(13, 77, 59, 0.5);
}

.mmlc-home .mmlc-home-guarantee {
  display: grid;
  gap: 18px;
  color: #fff;
  background: linear-gradient(120deg, #06382b 0%, #06261d 56%, #063527 100%);
  border-radius: 14px;
}

.mmlc-home .mmlc-home-guarantee h2 {
  margin: 0;
  color: #e7c783;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 390;
  line-height: 1.04;
}

.mmlc-home .mmlc-home-guarantee p {
  max-width: 960px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
}

.mmlc-home .mmlc-home-guarantee .button {
  width: fit-content;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.mmlc-home .mmlc-home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.mmlc-home .mmlc-home-process__steps li {
  min-height: 210px;
  padding: 20px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
}

.mmlc-home .mmlc-home-process__steps strong {
  color: #0f2730;
  font-size: 1rem;
  font-weight: 750;
}

.mmlc-home .mmlc-home-process__steps p {
  margin: 10px 0 0;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.58;
}

.mmlc-home .mmlc-home-matters {
  padding-top: 36px;
}

.mmlc-home .mmlc-home-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mmlc-home .mmlc-home-chip-list li {
  min-height: 40px;
  padding: 8px 16px;
  color: #103a2f;
  font-size: 0.9rem;
  font-weight: 650;
  background: #fff;
  border: 1px solid rgba(184, 135, 50, 0.45);
  border-radius: 999px;
}

.mmlc-home .mmlc-home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.mmlc-home .mmlc-home-about img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.mmlc-home .mmlc-home-about > div {
  padding: 34px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-home .mmlc-home-about h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 390;
  line-height: 1.03;
}

.mmlc-home .mmlc-home-about p {
  margin: 16px 0 0;
  color: #576069;
  line-height: 1.7;
}

.mmlc-home .mmlc-home-about .mission-line {
  margin-top: 18px;
  color: #0c3d30;
  font-weight: 700;
}

.mmlc-home .mmlc-home-secondary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mmlc-home .mmlc-home-secondary__grid article {
  min-height: 160px;
  padding: 20px;
  background: #f9fcf8;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
}

.mmlc-home .mmlc-home-secondary__grid h3 {
  margin: 0;
  color: #0f2730;
  font-size: 1rem;
  font-weight: 760;
}

.mmlc-home .mmlc-home-secondary__grid p {
  margin: 10px 0 0;
  color: #58646f;
  font-size: 0.92rem;
  line-height: 1.6;
}

.mmlc-home .mmlc-home-faq {
  color: #fff;
  background: linear-gradient(130deg, #063729, #041f18);
  border-radius: 14px;
}

.mmlc-home .mmlc-home-faq .mmlc-home-section__head h2 {
  color: #e7c783;
}

.mmlc-home .mmlc-home-faq__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mmlc-home .mmlc-home-faq details {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
}

.mmlc-home .mmlc-home-faq summary {
  padding: 14px 16px;
  color: #0f2730;
  font-size: 0.98rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.mmlc-home .mmlc-home-faq summary::-webkit-details-marker {
  display: none;
}

.mmlc-home .mmlc-home-faq summary::after {
  float: right;
  color: #0f2730;
  content: "+";
}

.mmlc-home .mmlc-home-faq details[open] summary::after {
  content: "-";
}

.mmlc-home .mmlc-home-faq details p {
  margin: 0;
  padding: 0 16px 14px;
  color: #576069;
  font-size: 0.9rem;
  line-height: 1.56;
}

.mmlc-home .mmlc-home-final-cta {
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0d5844, #073629);
  border-radius: 14px;
}

.mmlc-home .mmlc-home-final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 390;
  line-height: 1.04;
}

.mmlc-home .mmlc-home-final-cta p {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.68;
}

.mmlc-home .mmlc-home-final-cta .button {
  margin-top: 24px;
  width: auto;
  min-width: 220px;
}

.mmlc-home .mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .mmlc-home .mmlc-home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .mmlc-home .mmlc-home-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.96) 100%);
  }

  .mmlc-home .mmlc-home-hero__copy {
    max-width: 720px;
  }

  .mmlc-home .mmlc-home-services__grid,
  .mmlc-home .mmlc-home-secondary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-home .mmlc-home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-home .mmlc-home-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mmlc-home {
    padding-bottom: 108px;
  }

  .mmlc-home .mmlc-home-section {
    padding: 38px 18px;
  }

  .mmlc-home .mmlc-home-hero {
    gap: 16px;
    padding: 24px 18px 22px;
  }

  .mmlc-home .mmlc-home-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.86) 100%);
  }

  .mmlc-home .mmlc-home-hero__visual {
    position: relative;
    inset: auto;
    order: 2;
    min-height: 240px;
    overflow: hidden;
    border-radius: 16px;
  }

  .mmlc-home .mmlc-home-hero__visual img {
    height: 100%;
    object-position: 72% 44%;
    transform: none;
  }

  .mmlc-home .mmlc-home-hero__copy {
    order: 1;
  }

  .mmlc-home .mmlc-home-hero__copy h1 {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.04;
  }

  .mmlc-home .mmlc-home-hero__copy p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .mmlc-home .mmlc-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .mmlc-home .mmlc-home-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .mmlc-home .mmlc-home-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .mmlc-home .mmlc-home-trust span {
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.74rem;
    border-radius: 10px;
  }

  .mmlc-home .mmlc-home-trust svg {
    width: 13px;
    height: 13px;
  }

  .mmlc-home .mmlc-home-intake {
    order: 3;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 14px;
    margin-bottom: 84px;
    border-radius: 14px;
  }

  .mmlc-home .mmlc-home-intake__heading h2 {
    font-family: var(--font-body);
    font-size: 1.58rem;
    font-weight: 800;
  }

  .mmlc-home .mmlc-home-intake label {
    font-size: 0.68rem;
  }

  .mmlc-home .mmlc-home-intake input,
  .mmlc-home .mmlc-home-intake select,
  .mmlc-home .mmlc-home-intake textarea {
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 11px 12px;
  }

  .mmlc-home .mmlc-home-section__head h2 {
    font-family: var(--font-body);
    font-size: 1.72rem;
    font-weight: 800;
    line-height: 1.12;
  }

  .mmlc-home .mmlc-home-section__head p {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .mmlc-home .mmlc-home-services__grid,
  .mmlc-home .mmlc-home-secondary__grid,
  .mmlc-home .mmlc-home-process__steps {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .mmlc-home .mmlc-home-card,
  .mmlc-home .mmlc-home-process__steps li,
  .mmlc-home .mmlc-home-secondary__grid article {
    min-height: 0;
    padding: 18px;
    border-radius: 10px;
    box-shadow: none;
  }

  .mmlc-home .mmlc-home-card h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.24;
  }

  .mmlc-home .mmlc-home-card p,
  .mmlc-home .mmlc-home-process__steps p,
  .mmlc-home .mmlc-home-secondary__grid p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .mmlc-home .mmlc-home-chip-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .mmlc-home .mmlc-home-chip-list li {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.78rem;
    border-radius: 9px;
  }

  .mmlc-home .mmlc-home-about img {
    min-height: 240px;
  }

  .mmlc-home .mmlc-home-about > div {
    padding: 20px 18px;
    border-radius: 10px;
  }

  .mmlc-home .mmlc-home-about h2,
  .mmlc-home .mmlc-home-guarantee h2,
  .mmlc-home .mmlc-home-final-cta h2 {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.12;
  }

  .mmlc-home .mmlc-home-about p,
  .mmlc-home .mmlc-home-guarantee p,
  .mmlc-home .mmlc-home-final-cta p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .mmlc-home .mmlc-home-guarantee,
  .mmlc-home .mmlc-home-faq,
  .mmlc-home .mmlc-home-final-cta {
    border-radius: 10px;
  }

  .mmlc-home .mmlc-home-faq__list {
    gap: 8px;
    margin-top: 16px;
  }

  .mmlc-home .mmlc-home-faq summary {
    padding: 12px 13px;
    font-size: 0.9rem;
  }

  .mmlc-home .mmlc-home-faq details p {
    padding: 0 13px 12px;
    font-size: 0.84rem;
  }

  .mmlc-home .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 52;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 58px;
    overflow: hidden;
    background: linear-gradient(120deg, #084132, #063126);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(8, 20, 16, 0.28);
  }

  .mmlc-home .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 58px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mmlc-home .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mmlc-home .mobile-action-bar svg {
    width: 14px;
    height: 14px;
  }

  body:has(.mmlc-home .mmlc-home-intake input:focus, .mmlc-home .mmlc-home-intake select:focus, .mmlc-home .mmlc-home-intake textarea:focus) .mmlc-home .mobile-action-bar {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 52%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 135, 50, 0.35);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px var(--container-pad);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 290px;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.brand span,
.footer-brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.footer-brand strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta).is-active::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
}

.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.has-dropdown::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--ink);
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: var(--paper);
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.nav-cta,
.button.primary {
  color: var(--ivory);
  background: var(--ink);
}

.button.primary.light {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--paper);
}

.button:hover,
.nav-cta:hover {
  opacity: 0.85;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px) var(--container-pad);
  background: var(--ink);
}

.hero-copy h1,
.page-hero h1,
.contact-card h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1,
.contact-card h1 {
  color: var(--ink);
}

.hero-copy p,
.page-hero p,
.split-copy p,
.contact-card p,
.cta-band p {
  max-width: 48ch;
  margin: 32px 0 0;
  color: var(--mute);
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* Buttons inside dark hero sections */
.hero .button.primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.hero .button.secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}
.hero .button.secondary:hover {
  background: rgba(255,255,255,0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-row span {
  color: var(--paper);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media,
.page-hero img,
.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  min-height: 480px;
  margin: 0;
  background: var(--ink);
}

.hero-media img,
.page-hero img,
.split-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 16px 18px;
  color: white;
  background: rgba(7, 24, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.hero-media figcaption strong {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-media figcaption span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
}

.quick-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin: -36px clamp(18px, 5vw, 70px) 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-panel h2,
.section-heading h2,
.split-copy h2,
.cta-band h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 4.75rem;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--mute);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.search-control {
  display: grid;
  grid-template-columns: 1fr 54px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-control input {
  min-width: 0;
  height: 56px;
  border: 0;
  padding: 0 16px;
  color: var(--ink);
  outline: 0;
}

.search-control button {
  border: 0;
  border-left: 1px solid var(--hairline);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-control button:hover {
  background: var(--bone);
}

.search-control svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.section-block,
.split-section,
.page-hero,
.contact-layout {
  padding: clamp(60px, 8vw, 120px) var(--container-pad);
}

.section-block.muted {
  background: var(--bone);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading>a {
  flex: 0 0 auto;
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hairline);
}

.service-card,
.value-grid article,
.document-groups article,
.article-row article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  background: var(--paper);
  border: none;
  border-radius: 0;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--bone);
}

.service-card span,
.process-steps strong,
.article-row span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-card h3,
.process-steps h3,
.value-grid h3,
.document-groups h2,
.article-row h2 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-card p,
.process-steps p,
.value-grid p,
.article-row p,
.document-groups li {
  margin: 0;
  color: var(--muted);
}

.empty-state {
  margin: 22px 0 0;
  color: var(--rust);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

.split-section .split-media {
  min-height: 480px;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.process-steps,
.value-grid,
.article-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px var(--container-pad);
  color: var(--paper);
  background: var(--ink);
}

.cta-band h2,
.cta-band p {
  color: var(--paper);
}

.cta-band .button.primary.light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

/* Footer watermark */
.footer-watermark {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.06);
  text-align: center;
  margin-top: 80px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.page-hero.compact {
  grid-template-columns: 1fr;
  padding-bottom: 48px;
}

.page-hero img {
  min-height: 430px;
}

.page-search {
  max-width: 760px;
}

.details-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.details-table div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details-table strong {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details-table span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.details-table.emphasis span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
}

.document-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.document-groups ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.doc-price {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.check-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  min-height: calc(100vh - 92px);
  background:
    radial-gradient(circle at 12% 15%, rgba(185, 133, 25, 0.13), transparent 32%),
    linear-gradient(120deg, #f7f9f5, #eef2ef);
}

.contact-card {
  position: sticky;
  top: 124px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.form-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #f8faf6;
  outline: 0;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 133, 25, 0.14);
}

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

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.form-status a {
  color: var(--rust);
  font-weight: 950;
}

/* Old footer styles removed — using fat footer at end of file */

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
}

.footer-brand strong {
  color: var(--paper);
}

.footer-brand small {
  color: var(--gold);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: var(--paper);
}

.translate-widget {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.translate-widget button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.translate-widget button.is-active {
  color: #fff;
  background: var(--ink);
}

.translate-widget #google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.whatsapp-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 36px);
  min-height: 56px;
  padding: 10px 14px 10px 10px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.whatsapp-chat:hover {
  opacity: 0.85;
}

.whatsapp-chat .wa-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.whatsapp-chat span:last-child {
  display: grid;
  gap: 1px;
}

.whatsapp-chat strong {
  font-size: 13px;
  line-height: 1;
}

.whatsapp-chat small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.mmlc-page-home .whatsapp-chat {
  display: none;
}

.mmlc-page-contact .whatsapp-chat {
  display: none;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

  .service-grid,
  .process-steps,
  .value-grid,
  .document-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 100% 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 6px;
  }

  .has-dropdown {
    display: grid;
    gap: 2px;
  }

  .has-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    transform: none;
    visibility: visible;
    opacity: 1;
    padding: 4px 0 8px 12px;
    background: var(--ivory);
    border: 0;
    box-shadow: none;
  }

  .dropdown-menu a {
    padding: 8px 10px;
  }

  .site-nav a:not(.nav-cta).is-active::after {
    display: none;
  }

  .hero,
  .quick-panel,
  .split-section,
  .page-hero,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .split-section .split-media,
  .page-hero img {
    min-height: 360px;
  }

  .quick-panel {
    margin-top: 0;
  }

  .section-heading,
  .cta-band {
    display: block;
  }

  .section-heading>a,
  .cta-band .button {
    margin-top: 18px;
  }

  .details-table,
  .article-row,
  .check-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    max-width: 180px;
    font-size: 9px;
  }

  .hero,
  .section-block,
  .split-section,
  .page-hero,
  .contact-layout {
    padding-block: 50px;
  }

  .hero-copy h1,
  .page-hero h1,
  .contact-card h1 {
    font-size: 3rem;
  }

  .quick-panel h2,
  .section-heading h2,
  .split-copy h2,
  .cta-band h2 {
    font-size: 2.5rem;
  }

  .hero-actions,
  .trust-row {
    display: grid;
  }

  .service-grid,
  .process-steps,
  .value-grid,
  .document-groups {
    grid-template-columns: 1fr;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .whatsapp-chat {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
  }

  .whatsapp-chat small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/* FAT FOOTER STYLES */
.site-footer {
  padding: 80px var(--container-pad) 40px;
  background-color: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  padding-bottom: 60px;
}

.footer-brand-col .footer-desc {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h3 {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a, .footer-links p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
  line-height: 1.5;
}

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

.footer-bottom {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Premium Legal Concierge homepage */
.premium-home {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 246, 242, 0.72) 46%, #fff 100%);
}

.button svg,
.mobile-action-bar svg,
.concierge-trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concierge-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  min-height: 740px;
  align-items: center;
  padding: 68px var(--container-pad) 76px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.concierge-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 31%, rgba(255, 255, 255, 0.36) 56%, rgba(244, 246, 242, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 58%, #fff 100%);
  pointer-events: none;
}

.concierge-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.concierge-hero__copy,
.concierge-intake {
  position: relative;
  z-index: 2;
}

.concierge-hero__copy {
  width: min(58vw, 690px);
  padding-top: 0;
}

.concierge-hero__copy h1 {
  max-width: 14.5ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 4.55rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.concierge-hero__copy p {
  max-width: 34rem;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.concierge-actions .button {
  gap: 12px;
  min-height: 56px;
  padding-inline: 26px;
  box-shadow: 0 16px 40px rgba(16, 20, 24, 0.08);
}

.button.primary {
  background: linear-gradient(135deg, #0e3a2d, #062b22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(184, 135, 50, 0.42);
}

.concierge-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 34px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
}

.concierge-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.concierge-trust svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  stroke-width: 1.55;
}

.concierge-trust > span + span::before {
  width: 1px;
  height: 18px;
  content: "";
  background: var(--gold);
  margin-right: 4px;
}

.concierge-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin-left: 0;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0)) scale(1.02);
  transition: transform 0.1s linear;
}

.concierge-hero__visual::before {
  display: none;
}

.concierge-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  filter: saturate(0.92) contrast(1.02);
}

.concierge-intake {
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 228, 220, 0.9);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(16, 20, 24, 0.16);
  backdrop-filter: blur(16px);
}

.intake-heading {
  grid-column: 1 / -1;
  padding-bottom: 10px;
}

.intake-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 400;
}

.intake-heading p,
.intake-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.concierge-intake textarea {
  resize: vertical;
}

.concierge-intake .button {
  gap: 12px;
  min-height: 56px;
}

.luxury-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.luxury-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.mobile-section-title {
  display: none;
}

.trust-mobile,
.mobile-service-title {
  display: none;
}

.concierge-trust .trust-desktop,
.desktop-service-title {
  display: inline;
}

.concierge-trust .trust-mobile {
  display: none;
}

.luxury-heading h2,
.process-copy h2,
.promise-copy h2,
.support-promise h2,
.final-cta h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 4.35rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.luxury-heading p,
.process-copy p,
.promise-copy p,
.support-promise p,
.final-cta p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-universe,
.managed-process,
.support-promise,
.faq-section {
  padding: 110px var(--container-pad);
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-feature {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: #062b22;
}

.service-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.service-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 28, 22, 0.3), rgba(3, 28, 22, 0.95));
}

.service-feature > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 58px;
}

.service-feature span,
.service-row span,
.promise-grid span {
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-feature h3 {
  max-width: 8ch;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
}

.service-feature p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
}

.service-feature a,
.service-row a {
  width: fit-content;
  margin-top: 24px;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.service-rows {
  display: grid;
  gap: 1px;
}

.service-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 130px;
  padding: 28px 36px;
  background:
    linear-gradient(90deg, #fff, rgba(244, 246, 242, 0.82)),
    var(--paper);
}

.service-row h3 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.managed-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.8fr);
  gap: 64px;
  overflow: hidden;
  background: linear-gradient(110deg, #fff 0%, #f5f8f4 57%, rgba(255, 255, 255, 0) 100%);
}

.process-copy {
  align-self: center;
}

.process-visual {
  min-height: 430px;
  overflow: hidden;
  border-radius: 0 0 0 96px;
  box-shadow: var(--shadow);
}

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

.milestone-line {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin: 10px 0 0;
  padding: 58px 0 0;
  list-style: none;
}

.milestone-line::before {
  position: absolute;
  top: 31px;
  right: 5%;
  left: 5%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-2), rgba(184, 135, 50, 0.28));
  transform-origin: left;
  animation: mmlc-line-grow 1.4s ease both;
}

.milestone-line li {
  position: relative;
}

.milestone-line li::before {
  position: absolute;
  top: -35px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(184, 135, 50, 0.1);
}

.milestone-line span {
  display: block;
  color: #073629;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.milestone-line strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.milestone-line p,
.process-disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.process-disclaimer {
  grid-column: 1 / -1;
  max-width: 850px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 135, 50, 0.32);
}

.concierge-promise {
  position: relative;
  overflow: hidden;
  padding: 110px var(--container-pad) 76px;
  color: rgba(255, 255, 255, 0.82);
  background: #031f18;
}

.concierge-promise::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 31, 24, 0.98) 0%, rgba(3, 31, 24, 0.9) 48%, rgba(3, 31, 24, 0.62) 100%),
    linear-gradient(180deg, rgba(3, 31, 24, 0.25), rgba(3, 31, 24, 0.82));
  pointer-events: none;
}

.promise-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.promise-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.promise-copy h2 {
  color: var(--gold-2);
}

.promise-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.promise-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  background: rgba(226, 193, 106, 0.32);
}

.promise-grid article {
  min-height: 235px;
  padding: 32px;
  background: rgba(3, 34, 26, 0.86);
}

.promise-grid h3 {
  margin: 18px 0 0;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.promise-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.promise-note {
  position: relative;
  z-index: 2;
  margin: 32px 0 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(226, 193, 106, 0.28);
}

.support-promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) auto;
  align-items: center;
  gap: 34px;
  background: #fff;
}

.support-promise > div {
  max-width: 760px;
}

.support-promise img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0 0 0 64px;
  box-shadow: var(--shadow);
}

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

.faq-grid article {
  min-height: 220px;
  padding: 34px;
  background: #fff;
}

.faq-grid h3 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 95px var(--container-pad);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #073629, #031f18);
}

.final-cta h2 {
  max-width: 840px;
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.button.light-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

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

[data-reveal] {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes mmlc-line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .concierge-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
  }

  .concierge-hero__visual {
    inset: 0;
    opacity: 1;
  }

  .concierge-intake {
    grid-column: 2;
  }

  .service-editorial-grid,
  .managed-process {
    grid-template-columns: 1fr;
  }

  .service-feature,
  .service-feature > div {
    min-height: 460px;
  }

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

@media (max-width: 920px) {
  .concierge-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .concierge-hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.46) 68%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 62%, #fff 100%);
  }

  .concierge-hero__copy {
    display: flex;
    flex-direction: column;
    width: auto;
    padding-top: 0;
  }

  .concierge-hero__copy h1 {
    order: 1;
  }

  .concierge-hero__copy p {
    order: 2;
  }

  .concierge-actions {
    order: 3;
  }

  .concierge-trust {
    order: 4;
  }

  .concierge-hero__copy h1,
  .luxury-heading h2,
  .process-copy h2,
  .promise-copy h2,
  .support-promise h2,
  .final-cta h2 {
    font-size: 3.25rem;
  }

  .concierge-hero__visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: 1;
    order: initial;
    transform: none;
  }

  .concierge-hero__visual::before {
    display: none;
  }

  .concierge-hero__visual img {
    min-height: 100%;
    object-position: 67% top;
    border-radius: 0;
  }

  .concierge-intake {
    grid-column: auto;
    margin-top: 0;
    order: 3;
  }

  .service-universe,
  .managed-process,
  .support-promise,
  .faq-section {
    padding-block: 72px;
  }

  .service-row,
  .milestone-line,
  .support-promise,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 12px;
  }

  .milestone-line {
    padding-top: 0;
  }

  .milestone-line::before,
  .milestone-line li::before {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 95;
    display: grid;
    grid-template-columns: 0.8fr 0.95fr 1.3fr;
    gap: 8px;
    padding: 8px;
    background: rgba(3, 31, 24, 0.96);
    border: 1px solid rgba(226, 193, 106, 0.32);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(16, 20, 24, 0.24);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #073629;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-action-bar .mobile-action-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #98702a);
  }

  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 560px) {
  [data-reveal] {
    transform: none;
    opacity: 1;
  }

  .concierge-hero {
    padding: 46px 18px 28px;
  }

  .concierge-hero__copy h1 {
    max-width: 10.5ch;
    color: #073629;
    font-family: var(--font-body);
    font-size: 2.15rem;
    font-weight: 850;
    line-height: 1.18;
  }

  .luxury-heading h2,
  .process-copy h2,
  .promise-copy h2,
  .support-promise h2,
  .final-cta h2 {
    font-size: 2.75rem;
  }

  .concierge-actions,
  .concierge-trust {
    display: grid;
  }

  .concierge-actions {
    margin-top: 20px;
  }

  .concierge-actions .button {
    width: fit-content;
    min-height: 58px;
    padding-inline: 25px;
  }

  .concierge-trust {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 24px;
    padding-bottom: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .concierge-trust > span + span::before {
    display: none;
  }

  .concierge-trust > span {
    min-height: 34px;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
    padding: 0;
    white-space: nowrap;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .concierge-trust svg {
    width: 20px;
    height: 20px;
  }

  .concierge-intake {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px 20px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(6, 60, 47, 0.98), rgba(3, 31, 24, 0.98)),
      #031f18;
    border-color: rgba(226, 193, 106, 0.35);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(3, 31, 24, 0.28);
  }

  .intake-heading {
    padding-bottom: 2px;
  }

  .intake-heading h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 800;
  }

  .intake-heading p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
  }

  .concierge-intake label {
    display: grid;
    color: transparent;
    font-size: 0;
  }

  .concierge-intake input,
  .concierge-intake select,
  .concierge-intake textarea {
    min-height: 54px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .concierge-intake textarea {
    min-height: 82px;
  }

  .concierge-intake .button {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #ba842e);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .intake-note {
    display: none;
  }

  .desktop-section-title {
    display: none;
  }

  .mobile-section-title {
    display: block;
  }

  .service-universe {
    padding: 22px 18px 34px;
    background: #fff;
  }

  .service-universe .luxury-heading {
    margin: 0 0 18px;
    text-align: left;
  }

  .service-universe .luxury-heading h2 {
    color: #073629;
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.2;
  }

  .service-universe .luxury-heading h2::after,
  .faq-section .luxury-heading h2::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 9px;
    content: "";
    background: var(--gold);
  }

  .service-universe .luxury-heading p,
  .service-feature {
    display: none;
  }

  .service-editorial-grid {
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-rows {
    gap: 10px;
  }

  .service-feature > div {
    padding: 34px;
  }

  .service-feature h3 {
    font-size: 3.1rem;
  }

  .service-row {
    min-height: 74px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 20, 24, 0.11);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(16, 20, 24, 0.06);
  }

  .service-row span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: transparent;
    background: linear-gradient(135deg, #0e3a2d, #031f18);
    border-radius: 12px;
  }

  .service-row span::before {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    content: "01";
  }

  .service-row:nth-child(2) span::before {
    content: "02";
  }

  .service-row:nth-child(3) span::before {
    content: "03";
  }

  .service-row:nth-child(4) span::before {
    content: "04";
  }

  .service-row:nth-child(5) span::before {
    content: "05";
  }

  .service-row h3 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 800;
  }

  .service-row p {
    margin-top: 3px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .service-row a {
    width: 34px;
    height: 34px;
    overflow: hidden;
    margin-top: 0;
    color: transparent;
    border: 0;
  }

  .service-row a::after {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #101418;
    font-size: 1.35rem;
    content: "›";
  }

  .faq-section {
    padding: 28px 18px 132px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(6, 60, 47, 0.98), rgba(3, 31, 24, 0.98)),
      #031f18;
    border-radius: 18px 18px 0 0;
  }

  .faq-section .luxury-heading {
    margin-bottom: 18px;
  }

  .faq-section .luxury-heading h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.38rem;
    font-weight: 850;
    line-height: 1.2;
  }

  .faq-section .luxury-heading p {
    display: none;
  }

  .faq-grid {
    gap: 8px;
  }

  .faq-grid article {
    min-height: auto;
    padding: 15px 18px;
    background: #fff;
    border: 0;
    border-radius: 10px;
  }

  .faq-grid h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .faq-grid h3::after {
    font-size: 1.35rem;
    content: "+";
  }

  .faq-grid p {
    display: none;
  }

  .promise-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: sticky;
    right: 10px;
    bottom: 8px;
    left: 10px;
    grid-template-columns: 0.85fr 1fr 1.35fr;
    gap: 0;
    margin: 18px 10px 8px;
    padding: 11px;
    border-radius: 20px;
  }

  .mobile-action-bar a {
    min-height: 58px;
    color: #fff;
    background: transparent;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.32);
  }

  .mobile-action-primary {
    grid-column: auto;
    margin-left: 10px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 112px;
  }

  .premium-home {
    background: #fff;
  }

  .concierge-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 44px 18px 24px;
    background: #fff;
  }

  .concierge-hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 38%, rgba(255, 255, 255, 0.56) 65%, rgba(255, 255, 255, 0.12) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 70%, #fff 100%);
  }

  .concierge-hero::after {
    height: 52px;
  }

  .concierge-hero__visual {
    inset: 0 0 auto;
    height: 650px;
  }

  .concierge-hero__visual img {
    content: url("../images/mmlc-mobile-hero-consultation.webp");
    object-fit: cover;
    object-position: 82% top;
    filter: saturate(0.98) contrast(1.02);
  }

  .concierge-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .concierge-hero__copy h1 {
    max-width: 11ch;
    margin-top: 0;
    color: #073629;
    font-family: var(--font-body);
    font-size: 2.28rem;
    font-weight: 850;
    line-height: 1.08;
  }

  .concierge-hero__copy p {
    max-width: 21rem;
    margin-top: 22px;
    color: #4d565d;
    font-size: 1rem;
    line-height: 1.58;
  }

  .concierge-actions {
    display: flex;
    margin-top: 20px;
  }

  .concierge-actions .button {
    min-height: 58px;
    padding-inline: 26px;
    border-radius: 10px;
  }

  .concierge-actions .button.secondary {
    display: none;
  }

  .concierge-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 8px;
    margin: 22px 0 24px;
    overflow: visible;
    color: #073629;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1;
  }

  .concierge-trust > span {
    display: flex;
    min-width: 0;
    min-height: 66px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 9px 6px;
    white-space: nowrap;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 135, 50, 0.26);
    border-radius: 13px;
    box-shadow: 0 12px 32px rgba(16, 20, 24, 0.08);
    backdrop-filter: blur(10px);
  }

  .concierge-trust > span + span::before,
  .concierge-trust .trust-desktop {
    display: none !important;
  }

  .concierge-trust .trust-mobile {
    display: inline !important;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-overflow: ellipsis;
  }

  .concierge-trust svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--gold);
    margin-inline: auto;
  }

  .concierge-intake {
    position: relative;
    z-index: 2;
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    padding: 22px 18px 18px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(7, 54, 41, 0.99), rgba(3, 31, 24, 0.99)),
      #031f18;
    border: 1px solid rgba(226, 193, 106, 0.38);
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(3, 31, 24, 0.28);
  }

  .intake-heading {
    order: 0;
    grid-column: 1 / -1;
    padding-bottom: 2px;
  }

  .intake-heading h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.48rem;
    font-weight: 850;
    line-height: 1.15;
  }

  .intake-heading p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .concierge-intake label {
    color: transparent;
    font-size: 0;
  }

  .concierge-intake label:nth-of-type(1) {
    order: 1;
  }

  .concierge-intake label:nth-of-type(2) {
    order: 2;
  }

  .concierge-intake label:nth-of-type(3) {
    order: 3;
  }

  .concierge-intake label:nth-of-type(4) {
    order: 5;
    grid-column: 1 / -1;
  }

  .concierge-intake label:nth-of-type(5) {
    order: 4;
  }

  .concierge-intake label.wide {
    order: 6;
    grid-column: 1 / -1;
  }

  .concierge-intake input,
  .concierge-intake select,
  .concierge-intake textarea {
    min-height: 46px;
    padding-inline: 13px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .concierge-intake textarea {
    min-height: 62px;
    padding-block: 12px;
  }

  .concierge-intake .button {
    order: 7;
    grid-column: 1 / -1;
    min-height: 50px;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #ba842e);
    border: 0;
    border-radius: 999px;
  }

  .form-status,
  .intake-note {
    display: none;
  }

  .service-universe {
    margin-top: 84px;
    padding: 25px 18px 34px;
    background: #fff;
  }

  .desktop-section-title,
  .service-feature,
  .service-row:nth-child(3),
  .service-row:nth-child(5),
  .managed-process,
  .concierge-promise,
  .support-promise,
  .final-cta {
    display: none;
  }

  .mobile-section-title,
  .mobile-service-title {
    display: inline;
  }

  .desktop-service-title {
    display: none;
  }

  .service-universe .luxury-heading {
    margin: 0 0 16px;
    text-align: left;
  }

  .service-universe .luxury-heading h2 {
    color: #073629;
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.2;
  }

  .service-universe .luxury-heading h2::after,
  .faq-section .luxury-heading h2::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 9px;
    content: "";
    background: var(--gold);
  }

  .service-universe .luxury-heading p {
    display: none;
  }

  .service-editorial-grid {
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-rows {
    display: grid;
    gap: 10px;
  }

  .service-row {
    min-height: 74px;
    grid-template-columns: 48px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    padding: 11px 12px;
    background: #fff;
    border: 1px solid rgba(16, 20, 24, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(16, 20, 24, 0.06);
  }

  .service-row:nth-child(2) {
    order: 1;
  }

  .service-row:nth-child(1) {
    order: 2;
  }

  .service-row:nth-child(4) {
    order: 3;
  }

  .service-row > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: transparent;
    background: linear-gradient(135deg, #0e3a2d, #031f18);
    border-radius: 12px;
  }

  .service-row:nth-child(2) > span::before {
    content: "01";
  }

  .service-row:nth-child(1) > span::before {
    content: "02";
  }

  .service-row:nth-child(4) > span::before {
    content: "03";
  }

  .service-row > span::before {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 850;
  }

  .service-row h3 {
    color: #073629;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.2;
  }

  .service-row h3 span {
    display: inline;
    width: auto;
    height: auto;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    text-transform: none;
    background: none;
    border-radius: 0;
  }

  .service-row h3 span::before {
    content: none;
  }

  .service-row h3 .desktop-service-title {
    display: none;
  }

  .service-row h3 .mobile-service-title {
    display: inline;
  }

  .service-row p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    color: #5b646b;
    font-size: 0.76rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .service-row a {
    width: 28px;
    height: 28px;
    overflow: hidden;
    margin-top: 0;
    color: transparent;
    border: 0;
  }

  .service-row a::after {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #101418;
    font-size: 1.5rem;
    content: "›";
  }

  .faq-section {
    margin-top: 0;
    padding: 28px 18px 138px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(6, 60, 47, 0.99), rgba(3, 31, 24, 0.99)),
      #031f18;
    border-radius: 18px 18px 0 0;
  }

  .faq-section .luxury-heading {
    margin: 0 0 18px;
  }

  .faq-section .luxury-heading h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.32rem;
    font-weight: 850;
    line-height: 1.18;
  }

  .faq-section .luxury-heading p,
  .faq-grid p {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .faq-grid article {
    min-height: auto;
    padding: 15px 16px;
    background: #fff;
    border: 0;
    border-radius: 10px;
  }

  .faq-grid h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 650;
    line-height: 1.3;
  }

  .faq-grid h3::after {
    flex: 0 0 auto;
    font-size: 1.35rem;
    content: "+";
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 8px;
    left: 10px;
    z-index: 95;
    display: grid;
    grid-template-columns: 0.86fr 1fr 1.34fr;
    gap: 0;
    margin: 0;
    padding: 9px;
    background: rgba(3, 31, 24, 0.97);
    border: 1px solid rgba(226, 193, 106, 0.35);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(16, 20, 24, 0.32);
  }

  .mobile-action-bar a {
    min-height: 56px;
    color: #fff;
    background: transparent;
    border-radius: 11px;
    font-size: 0.82rem;
    font-weight: 850;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .mobile-action-bar .mobile-action-primary {
    grid-column: auto;
    margin-left: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #ba842e);
  }

  body:has(.concierge-intake input:focus, .concierge-intake select:focus, .concierge-intake textarea:focus) .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 560px) {
  .about-mission,
  .common-matters,
  .business-support,
  .audience-support,
  .confidential-knowledge {
    padding: 34px 18px;
  }

  .managed-process,
  .concierge-promise,
  .support-promise,
  .final-cta {
    display: grid;
  }

  .service-row:nth-child(1),
  .service-row:nth-child(2),
  .service-row:nth-child(3),
  .service-row:nth-child(4),
  .service-row:nth-child(5) {
    display: grid;
    order: initial;
  }

  .service-row:nth-child(1) > span::before {
    content: "01";
  }

  .service-row:nth-child(2) > span::before {
    content: "02";
  }

  .service-row:nth-child(3) > span::before {
    content: "03";
  }

  .service-row:nth-child(4) > span::before {
    content: "04";
  }

  .service-row:nth-child(5) > span::before {
    content: "05";
  }

  .about-mission,
  .business-support,
  .audience-support,
  .confidential-knowledge,
  .scope-guarantee,
  .managed-process {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .mission-panel,
  .matter-grid article,
  .confidential-knowledge article {
    min-height: auto;
    padding: 24px 20px;
  }

  .about-panel h2,
  .common-matters h2,
  .business-copy h2,
  .audience-support h2,
  .confidential-knowledge h2,
  .scope-guarantee h2 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.18;
  }

  .mission-panel h3 {
    font-family: var(--font-body);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .about-panel p,
  .mission-panel p,
  .business-copy p,
  .audience-support p,
  .confidential-knowledge p,
  .scope-guarantee p {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .matter-grid,
  .business-list,
  .audience-support ul,
  .confidential-knowledge {
    grid-template-columns: 1fr;
    margin-top: 20px;
    box-shadow: none;
  }

  .matter-grid svg {
    width: 24px;
    height: 24px;
  }

  .matter-grid h3 {
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 850;
  }

  .matter-grid p,
  .business-list span {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .business-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .business-list strong {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 850;
  }

  .audience-support {
    gap: 20px;
  }

  .audience-support ul {
    margin-top: 0;
  }

  .audience-support li {
    min-height: auto;
    padding: 17px 18px;
    font-size: 0.9rem;
  }

  .audience-support li::before {
    width: 20px;
    margin-bottom: 12px;
  }

  .scope-guarantee {
    padding: 34px 18px;
  }

  .scope-guarantee img {
    display: none;
  }

  .scope-guarantee .button {
    width: 100%;
    justify-content: center;
  }

  .managed-process {
    gap: 24px;
    padding: 34px 18px;
  }

  .process-visual {
    min-height: 220px;
    border-radius: 0 0 0 42px;
  }

  .milestone-line {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .milestone-line li {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .milestone-line span {
    font-size: 1.45rem;
  }

  .process-disclaimer {
    padding-top: 16px;
    font-size: 0.82rem;
  }

  .concierge-promise {
    padding: 38px 18px 32px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .promise-grid article {
    min-height: auto;
    padding: 22px 18px;
  }

  .promise-grid h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 850;
  }

  .promise-grid p,
  .promise-note {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .business-support {
    gap: 22px;
  }

  .confidential-knowledge {
    gap: 1px;
  }

  .confidential-knowledge a {
    font-size: 0.72rem;
  }

  .final-cta {
    padding: 44px 18px 132px;
  }
}

/* ============================================================
 * Homepage v3: aligned to reference mockup
 * (5 service cards w/ icons, numbered process badges, icon chips,
 *  horizontal guarantee band, 2-col FAQ+CTA closing, 3-item mobile bar)
 * ============================================================ */

.mmlc-home .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Intake form: icon-wrapped fields like reference ── */
.mmlc-home .mmlc-home-intake .mmlc-input-wrap {
  position: relative;
  display: block;
}

.mmlc-home .mmlc-home-intake .mmlc-input-wrap svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 16px;
  color: rgba(247, 250, 246, 0.7);
  transform: translateY(-50%);
  pointer-events: none;
}

.mmlc-home .mmlc-home-intake .mmlc-input-wrap input,
.mmlc-home .mmlc-home-intake .mmlc-input-wrap select {
  padding-left: 38px;
}

.mmlc-home .mmlc-home-intake__secure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 0;
  padding: 8px 10px;
  color: rgba(247, 250, 246, 0.88);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  text-align: center;
}

.mmlc-home .mmlc-home-intake__secure svg {
  width: 14px;
  height: 14px;
  color: var(--gold-2, #E2C16A);
}

/* ── Service cards: icon at top-left ── */
.mmlc-home .mmlc-home-services__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mmlc-home .mmlc-home-card {
  position: relative;
  gap: 10px;
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mmlc-home .mmlc-home-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.5);
  box-shadow: 0 22px 44px rgba(7, 54, 41, 0.12);
}

.mmlc-home .mmlc-home-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  color: #073629;
  background: linear-gradient(140deg, #f3efe1, #eadcb6);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 12px;
}

.mmlc-home .mmlc-home-card__icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-home .mmlc-home-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
}

.mmlc-home .mmlc-home-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── Guarantee band: full-width horizontal stripe w/ shield + laurel ── */
.mmlc-home-guarantee-band {
  position: relative;
  margin: 40px 0 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(95deg, #073629 0%, #0a4634 55%, #073629 100%);
  border-top: 1px solid rgba(226, 193, 106, 0.32);
  border-bottom: 1px solid rgba(226, 193, 106, 0.32);
}

.mmlc-home-guarantee-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 38px var(--gutter);
}

.mmlc-home-guarantee-band__emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-home-guarantee-band__emblem > svg,
.mmlc-home-guarantee-band__emblem > img {
  width: 96px;
  height: 96px;
}

.mmlc-home-guarantee-band__shield {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid #fff8e6;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.mmlc-home-guarantee-band__shield svg {
  width: 28px;
  height: 28px;
}

.mmlc-home-guarantee-band__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-home-guarantee-band__copy p {
  margin: 10px 0 0;
  color: rgba(247, 250, 246, 0.86);
  font-size: 0.97rem;
  line-height: 1.65;
  max-width: 1100px;
}

/* ── Process steps: gold numbered badges + content beside ── */
.mmlc-home .mmlc-home-process__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.mmlc-home .mmlc-home-process__steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mmlc-home .mmlc-home-process__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #073629;
  background: #fff;
  border: 2px solid rgba(184, 135, 50, 0.55);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(7, 54, 41, 0.1);
}

.mmlc-home .mmlc-home-process__badge svg {
  width: 22px;
  height: 22px;
  color: #073629;
}

.mmlc-home .mmlc-home-process__num {
  position: absolute;
  top: -10px;
  left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
}

.mmlc-home .mmlc-home-process__steps strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
}

.mmlc-home .mmlc-home-process__steps p {
  margin-top: 6px;
  font-size: 0.9rem;
}

/* ── Common matters chip list: leading icon per chip ── */
.mmlc-home .mmlc-home-chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #e0dfd1;
}

.mmlc-home .mmlc-home-chip-list li svg {
  width: 16px;
  height: 16px;
  color: #1F6F5B;
  flex-shrink: 0;
}

/* ── About section: image + intro + secondary 5-card grid ── */
.mmlc-home .mmlc-home-about {
  align-items: stretch;
  gap: 28px;
}

.mmlc-home .mmlc-home-about__panels {
  display: grid;
  gap: 22px;
}

.mmlc-home .mmlc-home-about__intro {
  padding: 30px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-home .mmlc-home-about__intro h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 420;
  line-height: 1.05;
}

.mmlc-home .mmlc-home-about__intro p {
  margin: 14px 0 0;
  color: #576069;
  font-size: 0.98rem;
  line-height: 1.65;
}

.mmlc-home .mmlc-home-about__intro .mission-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  color: #0c3d30;
  font-weight: 600;
  background: rgba(226, 193, 106, 0.14);
  border: 1px solid rgba(184, 135, 50, 0.35);
  border-radius: 10px;
}

.mmlc-home .mmlc-home-about__intro .mission-line svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold, #B88732);
  flex-shrink: 0;
}

.mmlc-home .mmlc-home-about__secondary {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-home .mmlc-home-about__secondary h3 {
  margin: 0 0 16px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 460;
}

.mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid article {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  min-height: 0;
  padding: 16px 12px;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 10px;
}

.mmlc-home .mmlc-home-secondary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #073629;
  background: #fff;
  border: 1.5px solid rgba(184, 135, 50, 0.4);
  border-radius: 50%;
}

.mmlc-home .mmlc-home-secondary__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid h4 {
  margin: 0;
  color: #0f2730;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

/* ── Closing section: FAQ on left, CTA card on right ── */
.mmlc-home-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.mmlc-home-closing__faq {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-home-closing__faq .mmlc-home-section__head h2 {
  color: #0f2730;
  font-size: 1.4rem;
  font-weight: 540;
}

.mmlc-home-closing__faq .mmlc-home-faq__list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mmlc-home-closing__faq details {
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 10px;
}

.mmlc-home-closing__faq summary {
  padding: 12px 14px;
  color: #0f2730;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mmlc-home-closing__faq summary::-webkit-details-marker {
  display: none;
}

.mmlc-home-closing__faq summary::after {
  float: right;
  color: var(--gold, #B88732);
  content: "+";
  font-weight: 700;
}

.mmlc-home-closing__faq details[open] summary::after {
  content: "−";
}

.mmlc-home-closing__faq details p {
  margin: 0;
  padding: 0 14px 12px;
  color: #576069;
  font-size: 0.88rem;
  line-height: 1.55;
}

.mmlc-home-closing__cta {
  display: grid;
  gap: 12px;
  padding: 26px 26px 28px;
  background: linear-gradient(135deg, #f6f1de 0%, #fbf6e7 100%);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 14px;
}

.mmlc-home-closing__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #073629;
  border-radius: 50%;
}

.mmlc-home-closing__cta-icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-home-closing__cta h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 460;
  line-height: 1.15;
}

.mmlc-home-closing__cta p {
  margin: 0;
  color: #4f5963;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mmlc-home-closing__cta .button {
  width: fit-content;
  margin-top: 4px;
  color: #fff;
  background: #073629;
  border-color: #073629;
}

.mmlc-home-closing__cta .button svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

/* ── Mobile action bar: 3 items with gold Start Consultation CTA ── */
@media (max-width: 560px) {
  .mmlc-home .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 52;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    min-height: 62px;
    padding: 6px;
    background: #fff;
    border: 1px solid #d8dfd6;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(8, 20, 16, 0.18);
  }

  .mmlc-home .mobile-action-bar .mobile-action-bar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 50px;
    padding: 0 14px;
    color: #073629;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    border: 0;
  }

  .mmlc-home .mobile-action-bar .mobile-action-bar__link svg {
    width: 16px;
    height: 16px;
    color: #1F6F5B;
  }

  .mmlc-home .mobile-action-bar .mobile-action-bar__link + .mobile-action-bar__link {
    border-left: 1px solid #e6ebe2;
  }
}

/* ── Responsive: tablet and mobile adjustments ── */
@media (max-width: 1180px) {
  .mmlc-home .mmlc-home-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .mmlc-home-closing {
    grid-template-columns: 1fr;
  }

  .mmlc-home-guarantee-band__inner {
    gap: 22px;
  }

  .mmlc-home .mmlc-home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mmlc-home .mmlc-home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-home-guarantee-band__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mmlc-home-guarantee-band__emblem {
    width: 72px;
    height: 72px;
  }

  .mmlc-home-guarantee-band__emblem > svg {
    width: 72px;
    height: 72px;
  }

  .mmlc-home-guarantee-band__shield {
    width: 40px;
    height: 40px;
  }

  .mmlc-home-guarantee-band__shield svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 560px) {
  .mmlc-home .mmlc-home-services__grid {
    grid-template-columns: 1fr;
  }

  /* Mobile: services as a list w/ chevron, matching reference mockup */
  .mmlc-home .mmlc-home-card {
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon title chevron"
      "icon desc  chevron";
    align-items: center;
    gap: 6px 14px;
    padding: 14px 16px;
    border: 1px solid #e6ebe2;
    box-shadow: 0 6px 14px rgba(7, 54, 41, 0.05);
  }

  .mmlc-home .mmlc-home-card__icon {
    grid-area: icon;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
  }

  .mmlc-home .mmlc-home-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .mmlc-home .mmlc-home-card h3 {
    grid-area: title;
    font-size: 0.96rem;
    font-weight: 700;
  }

  .mmlc-home .mmlc-home-card p {
    grid-area: desc;
    margin: 0;
    color: #6d7378;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .mmlc-home .mmlc-home-card a {
    grid-area: chevron;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    text-indent: -9999px;
    overflow: hidden;
    background:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7378' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m10 6 6 6-6 6'/></svg>") center/16px 16px no-repeat;
  }

  .mmlc-home-guarantee-band {
    margin: 24px 0 0;
  }

  .mmlc-home-guarantee-band__inner {
    padding: 22px 18px;
  }

  .mmlc-home-guarantee-band__copy h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .mmlc-home-guarantee-band__copy p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .mmlc-home .mmlc-home-process__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mmlc-home .mmlc-home-chip-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mmlc-home .mmlc-home-chip-list li {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .mmlc-home .mmlc-home-about__intro,
  .mmlc-home .mmlc-home-about__secondary,
  .mmlc-home-closing__faq,
  .mmlc-home-closing__cta {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-home .mmlc-home-intake .mmlc-input-wrap svg {
    width: 14px;
    height: 14px;
  }

  .mmlc-home .mmlc-home-intake .mmlc-input-wrap input,
  .mmlc-home .mmlc-home-intake .mmlc-input-wrap select {
    padding-left: 34px;
  }
}

/* ============================================================
 * Homepage v3.1 — fixes:
 *   1) Desktop hero bg image full-bleed (was clipped to 1440px maxw)
 *   2) Mobile vertical rhythm — kill the 84px gap below intake form,
 *      tighten section padding, hero-copy spacing, about gap.
 * ============================================================ */

/* ── 1. Hero full-bleed background ─────────────────────────── */
.mmlc-home .mmlc-home-hero {
  max-width: none;
  width: 100%;
  /* Inner padding centers content to maxw while bg spans full viewport */
  padding-right: var(--container-pad);
  padding-left: var(--container-pad);
}

/* The background visual + gradient overlay both stretch the full hero */
.mmlc-home .mmlc-home-hero__visual,
.mmlc-home .mmlc-home-hero::before {
  inset: 0;
  width: 100%;
}

.mmlc-home .mmlc-home-hero__visual img {
  /* Re-anchor the focal point now that the image stretches wider */
  object-position: 62% 50%;
}

/* On very wide screens, ease the gradient so copy stays legible
   without bleaching out the consultation photo on the right. */
@media (min-width: 1441px) {
  .mmlc-home .mmlc-home-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 38%,
        rgba(255, 255, 255, 0.55) 58%,
        rgba(255, 255, 255, 0.12) 78%,
        rgba(255, 255, 255, 0.04) 100%
      );
  }
}

/* ── 2. Mobile spacing tightening ──────────────────────────── */
@media (max-width: 720px) {
  .mmlc-home .mmlc-home-section {
    padding: 30px 18px;
  }

  .mmlc-home-guarantee-band {
    margin: 0;
  }

  .mmlc-home-guarantee-band__inner {
    padding: 22px 18px;
  }

  .mmlc-home .mmlc-home-about {
    gap: 16px;
  }

  .mmlc-home .mmlc-home-about__panels {
    gap: 14px;
  }

  .mmlc-home .mmlc-home-about img {
    min-height: 200px;
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  /* Hero rhythm */
  .mmlc-home .mmlc-home-hero {
    gap: 14px;
    padding: 20px 16px 18px;
  }

  .mmlc-home .mmlc-home-hero__visual {
    min-height: 200px;
    border-radius: 14px;
  }

  .mmlc-home .mmlc-home-hero__copy h1 {
    font-size: 1.95rem;
    line-height: 1.06;
  }

  .mmlc-home .mmlc-home-hero__copy p {
    margin-top: 10px;
  }

  .mmlc-home .mmlc-home-hero__actions {
    margin-top: 14px;
  }

  .mmlc-home .mmlc-home-trust {
    margin-top: 10px;
  }

  /* Kill the 84px ghost gap under the intake form on mobile.
     The fixed action bar is overlay-positioned and the parent
     already reserves 108px of bottom padding for clearance. */
  .mmlc-home .mmlc-home-intake {
    margin-bottom: 0;
    padding: 16px 14px;
  }

  /* Smaller bottom padding now that the intake has no ghost gap */
  .mmlc-home {
    padding-bottom: 92px;
  }

  /* Section rhythm: compact + uniform */
  .mmlc-home .mmlc-home-section {
    padding: 24px 16px;
  }

  .mmlc-home .mmlc-home-section__head p {
    margin-top: 8px;
  }

  /* Services list on mobile (already vertical w/ chevron) */
  .mmlc-home .mmlc-home-services__grid {
    gap: 8px;
    margin-top: 12px;
  }

  /* Tighter process step rhythm */
  .mmlc-home .mmlc-home-process__steps {
    gap: 14px;
    margin-top: 14px;
  }

  /* Tighter chip grid */
  .mmlc-home .mmlc-home-chip-list {
    margin-top: 12px;
  }

  /* About image hugs the panel below it */
  .mmlc-home .mmlc-home-about {
    gap: 14px;
  }

  .mmlc-home .mmlc-home-about img {
    min-height: 180px;
  }

  .mmlc-home .mmlc-home-about__panels {
    gap: 12px;
  }

  .mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mmlc-home .mmlc-home-about__secondary .mmlc-home-secondary__grid article {
    padding: 12px 10px;
  }

  /* Closing FAQ + CTA — already stacks (1120 breakpoint), keep tight */
  .mmlc-home-closing {
    gap: 12px;
  }

  .mmlc-home-closing__faq,
  .mmlc-home-closing__cta {
    padding: 18px 16px;
  }

  .mmlc-home-closing__faq .mmlc-home-faq__list {
    margin-top: 12px;
  }

  /* Guarantee band ── no top margin: section padding above does the work */
  .mmlc-home-guarantee-band {
    margin: 0;
  }

  .mmlc-home-guarantee-band__inner {
    padding: 20px 16px;
  }
}

/* ── 3. Tablet-range section padding (was a leftover 84px) ── */
@media (min-width: 561px) and (max-width: 1120px) {
  .mmlc-home .mmlc-home-section {
    padding: 56px var(--gutter);
  }

  .mmlc-home-guarantee-band__inner {
    padding: 32px var(--gutter);
  }
}

/* ============================================================
 * Homepage v3.2 — hide hero photo on mobile (matches reference)
 * Mobile column: brand → headline → CTAs → trust pills → form
 * (no consultation photo between copy and form)
 * ============================================================ */
@media (max-width: 560px) {
  .mmlc-home .mmlc-home-hero__visual {
    display: none;
  }

  /* The white gradient overlay was layered on top of the photo;
     without the photo behind it, we don't need it eating contrast. */
  .mmlc-home .mmlc-home-hero::before {
    display: none;
  }

  /* Hero now reads as a clean white block — restore solid bg */
  .mmlc-home .mmlc-home-hero {
    background: #ffffff;
    border-bottom: 0;
  }
}

/* ============================================================
 * Homepage v3.3 — three fixes:
 *   (a) Hero form: too wide on desktop — give the headline more room
 *       and cap the form to ~420px like the reference.
 *   (b) Mobile hero image: enforce hidden with !important (was being
 *       overridden by an earlier same-specificity rule in the cascade,
 *       and bump the cutoff to 760px so larger phones also hide it).
 *   (c) Mobile sticky bar: now only 2 links (Call / WhatsApp). Reset
 *       the previously-3-column grid to a clean even split.
 * ============================================================ */

/* ── (a) Hero form narrower on desktop ─────────────────────── */
@media (min-width: 1121px) {
  .mmlc-home .mmlc-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
    gap: 48px;
    align-items: center;
  }

  .mmlc-home .mmlc-home-hero__copy {
    max-width: 720px;
  }

  .mmlc-home .mmlc-home-intake {
    width: 100%;
    max-width: 420px;
    padding: 22px 20px;
  }

  .mmlc-home .mmlc-home-intake .mmlc-home-intake__heading h2 {
    font-size: 1.7rem;
  }

  .mmlc-home .mmlc-home-intake label {
    font-size: 0.7rem;
  }

  .mmlc-home .mmlc-home-intake input,
  .mmlc-home .mmlc-home-intake select,
  .mmlc-home .mmlc-home-intake textarea {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .mmlc-home .mmlc-home-intake .mmlc-input-wrap input,
  .mmlc-home .mmlc-home-intake .mmlc-input-wrap select {
    padding-left: 34px;
  }

  .mmlc-home .mmlc-home-intake textarea {
    min-height: 72px;
  }
}

/* ── (b) Force-hide hero photo + overlay on phones (≤760px) ── */
@media (max-width: 760px) {
  .mmlc-home .mmlc-home-hero__visual,
  .mmlc-home .mmlc-home-hero::before {
    display: none !important;
  }

  .mmlc-home .mmlc-home-hero {
    background: #ffffff;
    border-bottom: 0;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mmlc-home .mmlc-home-hero__copy {
    order: 1;
    max-width: 100%;
  }

  .mmlc-home .mmlc-home-intake {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
}

/* ── (c) Mobile sticky bar: clean 2-column (Call · WhatsApp) ── */
@media (max-width: 560px) {
  .mmlc-home .mobile-action-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px;
    min-height: 58px;
    background: #ffffff;
    border: 1px solid #d8dfd6;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(8, 20, 16, 0.16);
  }

  .mmlc-home .mobile-action-bar .mobile-action-bar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 14px;
    color: #073629;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 12px;
  }

  .mmlc-home .mobile-action-bar .mobile-action-bar__link svg {
    width: 18px;
    height: 18px;
    color: #1F6F5B;
  }

  /* The middle divider between the two links */
  .mmlc-home .mobile-action-bar .mobile-action-bar__link + .mobile-action-bar__link {
    border-left: 1px solid #e6ebe2;
    border-radius: 0;
  }
}

/* ============================================================
 * Homepage v3.4 — image-led "Common Matters" big-box cards
 * + scrollable mobile menu
 * ============================================================ */

/* ── Common Matters: image-led big-box grid ────────────────── */
.mmlc-home .mmlc-home-matters__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.mmlc-home .mmlc-matter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(7, 54, 41, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mmlc-home .mmlc-matter-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 24px 48px rgba(7, 54, 41, 0.16);
}

.mmlc-home .mmlc-matter-card__media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f6f2;
}

.mmlc-home .mmlc-matter-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 54, 41, 0) 60%, rgba(7, 54, 41, 0.55) 100%);
  pointer-events: none;
}

.mmlc-home .mmlc-matter-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.mmlc-home .mmlc-matter-card:hover .mmlc-matter-card__media img {
  transform: scale(1.04);
}

.mmlc-home .mmlc-matter-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
  background: #ffffff;
}

.mmlc-home .mmlc-matter-card__icon {
  position: absolute;
  top: -26px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a 0%, #073629 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(7, 54, 41, 0.22);
}

.mmlc-home .mmlc-matter-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-home .mmlc-matter-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 540;
  line-height: 1.2;
  padding-right: 56px;
}

.mmlc-home .mmlc-matter-card p {
  margin: 0;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Responsive: 4 → 3 → 2 → 1 columns */
@media (max-width: 1180px) {
  .mmlc-home .mmlc-home-matters__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .mmlc-home .mmlc-home-matters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .mmlc-home .mmlc-home-matters__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }

  .mmlc-home .mmlc-matter-card {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(7, 54, 41, 0.08);
  }

  .mmlc-home .mmlc-matter-card__media {
    aspect-ratio: 16 / 9;
  }

  .mmlc-home .mmlc-matter-card__body {
    padding: 18px 18px 20px;
  }

  .mmlc-home .mmlc-matter-card__icon {
    top: -22px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .mmlc-home .mmlc-matter-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .mmlc-home .mmlc-matter-card h3 {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    padding-right: 48px;
  }

  .mmlc-home .mmlc-matter-card p {
    font-size: 0.84rem;
  }
}

/* ── Scrollable mobile nav (was overflowing the viewport) ──── */
@media (max-width: 980px) {
  .site-nav {
    /* Cap to viewport minus the header strip and bottom safe-area;
       enable smooth vertical scroll inside the open menu. */
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Slim, branded scrollbar inside the open nav */
  .site-nav::-webkit-scrollbar {
    width: 6px;
  }

  .site-nav::-webkit-scrollbar-thumb {
    background: rgba(7, 54, 41, 0.25);
    border-radius: 999px;
  }

  .site-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  /* Prevent the page from scrolling behind the open menu */
  body:has(.site-nav.is-open) {
    overflow: hidden;
  }
}

/* ============================================================
 * v3.5 — Why Choose MMLC pillars + two-office address blocks
 * ============================================================ */

/* ── About panel right side: Why Choose MMLC ───────────────── */
.mmlc-home .mmlc-home-about__why {
  padding: 26px 28px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-home .mmlc-home-about__why h3 {
  margin: 0 0 18px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 460;
  line-height: 1.15;
}

.mmlc-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-why-pillar {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 16px 18px;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mmlc-why-pillar:hover {
  background: #fbfdf8;
  border-color: rgba(184, 135, 50, 0.55);
  transform: translateY(-2px);
}

.mmlc-why-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1.5px solid rgba(226, 193, 106, 0.55);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(7, 54, 41, 0.16);
}

.mmlc-why-pillar__icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-why-pillar h4 {
  margin: 0 0 4px;
  color: #0e1a1f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.22;
}

.mmlc-why-pillar p {
  margin: 0;
  color: #55616d;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .mmlc-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mmlc-home .mmlc-home-about__why {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .mmlc-home .mmlc-home-about__why h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .mmlc-why-grid {
    gap: 10px;
  }

  .mmlc-why-pillar {
    padding: 14px;
  }

  .mmlc-why-pillar__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .mmlc-why-pillar__icon svg {
    width: 18px;
    height: 18px;
  }

  .mmlc-why-pillar h4 {
    font-size: 0.94rem;
  }

  .mmlc-why-pillar p {
    font-size: 0.82rem;
  }
}

/* ── Two-office display: footer ────────────────────────────── */
.footer-offices {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.footer-office strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-office p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ── Two-office display: contact page ──────────────────────── */
.contact-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-office {
  padding: 16px 18px;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 12px;
}

.contact-office__label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold, #B88732);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-office p {
  margin: 0;
  color: #2c3640;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .contact-offices {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
 * Contact page v2 — symmetric hero, quick cards, form + next-steps
 * aside, and two-office grid with embedded maps + directions CTAs.
 * ============================================================ */

.mmlc-contact {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #f4f6f2 0%, #ffffff 35%, #ffffff 100%);
}

/* ── Hero ─────────────────────────────────────────────────── */
.mmlc-contact-hero {
  padding: 72px var(--container-pad) 28px;
  text-align: center;
}

.mmlc-contact-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.mmlc-contact-hero .section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-contact-hero h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.mmlc-contact-hero p {
  max-width: 640px;
  margin: 18px auto 0;
  color: #4f5963;
  font-size: 1.04rem;
  line-height: 1.65;
}

/* ── Quick contact cards (3-up) ───────────────────────────── */
.mmlc-contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter) 40px;
}

.mmlc-quick-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: #0e1a1f;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7, 54, 41, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 44px rgba(7, 54, 41, 0.14);
}

.mmlc-quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1.5px solid rgba(226, 193, 106, 0.5);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(7, 54, 41, 0.18);
}

.mmlc-quick-card__icon svg {
  width: 24px;
  height: 24px;
}

.mmlc-quick-card__text {
  display: grid;
  gap: 2px;
}

.mmlc-quick-card__text strong {
  color: #0e1a1f;
  font-size: 1rem;
  font-weight: 700;
}

.mmlc-quick-card__text span {
  color: #55616d;
  font-size: 0.9rem;
}

.mmlc-quick-card__chev {
  color: #1F6F5B;
}

.mmlc-quick-card__chev svg {
  width: 18px;
  height: 18px;
}

/* ── Main: form + what-happens-next aside ─────────────────── */
.mmlc-contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 56px;
  align-items: start;
}

/* Form panel */
.mmlc-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 30px 32px 32px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(7, 54, 41, 0.08);
}

.mmlc-contact-form__heading {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.mmlc-contact-form__heading h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 460;
  line-height: 1.1;
}

.mmlc-contact-form__heading p {
  margin: 6px 0 0;
  color: #6d7378;
  font-size: 0.92rem;
  line-height: 1.5;
}

.mmlc-field {
  display: grid;
  gap: 6px;
}

.mmlc-field--wide {
  grid-column: 1 / -1;
}

.mmlc-field__label {
  color: #2c3640;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mmlc-contact-form input,
.mmlc-contact-form select,
.mmlc-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: #101418;
  background: #f8faf6;
  border: 1px solid #d8dfd6;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-contact-form input:hover,
.mmlc-contact-form select:hover,
.mmlc-contact-form textarea:hover {
  border-color: #bcc6b8;
}

.mmlc-contact-form input:focus,
.mmlc-contact-form select:focus,
.mmlc-contact-form textarea:focus {
  background: #ffffff;
  border-color: rgba(184, 135, 50, 0.7);
  box-shadow: 0 0 0 3px rgba(226, 193, 106, 0.2);
  outline: none;
}

.mmlc-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.mmlc-contact-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a 0%, #073629 100%);
  border: 1px solid #073629;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.mmlc-contact-form__submit svg {
  width: 16px;
  height: 16px;
}

.mmlc-contact-form .form-status {
  margin: 0;
  color: #4f5963;
  font-size: 0.88rem;
}

/* Right column: what-happens-next */
.mmlc-contact-aside {
  display: grid;
  gap: 18px;
  padding: 24px 24px 26px;
  background: linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #093f31 100%);
  color: #ffffff;
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(7, 54, 41, 0.22);
}

.mmlc-contact-aside h2 {
  margin: 0;
  color: #e7c783;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 460;
  line-height: 1.1;
}

.mmlc-contact-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-contact-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.mmlc-contact-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.mmlc-contact-steps strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.mmlc-contact-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mmlc-contact-meta {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 14px 14px 14px;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.mmlc-contact-meta li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.mmlc-contact-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-contact-meta__icon svg {
  width: 16px;
  height: 16px;
}

.mmlc-contact-meta strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
}

.mmlc-contact-meta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* ── Two-office grid w/ map + directions ──────────────────── */
.mmlc-contact-offices {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter) 0;
}

.mmlc-contact-offices__head {
  text-align: center;
  margin-bottom: 28px;
}

.mmlc-contact-offices__head h2 {
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 420;
  line-height: 1.08;
}

.mmlc-contact-offices__head p {
  max-width: 640px;
  margin: 12px auto 0;
  color: #4f5963;
  line-height: 1.6;
}

.mmlc-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mmlc-office-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(7, 54, 41, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mmlc-office-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 30px 60px rgba(7, 54, 41, 0.18);
}

.mmlc-office-card__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eef2ec;
  border-bottom: 1px solid #d8dfd6;
  overflow: hidden;
}

.mmlc-office-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(0.98);
}

.mmlc-office-card__body {
  display: grid;
  gap: 16px;
  padding: 22px 24px 24px;
}

.mmlc-office-card__header {
  display: grid;
  gap: 6px;
}

.mmlc-office-card__label {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  color: var(--gold, #B88732);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-office-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.mmlc-office-card__lines {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-office-card__lines li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.mmlc-office-card__line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #073629;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 8px;
}

.mmlc-office-card__line-icon svg {
  width: 14px;
  height: 14px;
}

.mmlc-office-card__lines p {
  margin: 0;
  color: #2c3640;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mmlc-office-card__lines a {
  color: #073629;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 54, 41, 0.25);
}

.mmlc-office-card__lines a:hover {
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-office-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.mmlc-office-card__actions .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}

.mmlc-office-card__actions .button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1px solid #073629;
}

.mmlc-office-card__actions .button.secondary {
  color: #073629;
  background: #ffffff;
  border: 1px solid #d8dfd6;
}

.mmlc-office-card__actions .button.secondary:hover {
  border-color: rgba(184, 135, 50, 0.6);
  background: #fbfdf8;
}

.mmlc-office-card__actions .button svg {
  width: 14px;
  height: 14px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-contact-main {
    grid-template-columns: 1fr;
  }

  .mmlc-contact-aside {
    order: -1;
  }
}

@media (max-width: 860px) {
  .mmlc-contact-quick {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .mmlc-offices-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .mmlc-contact {
    padding-bottom: 96px;
  }

  .mmlc-contact-hero {
    padding: 36px 18px 18px;
  }

  .mmlc-contact-hero h1 {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.12;
  }

  .mmlc-contact-hero p {
    font-size: 0.94rem;
  }

  .mmlc-contact-quick {
    padding: 4px 16px 22px;
    gap: 10px;
  }

  .mmlc-quick-card {
    grid-template-columns: 44px 1fr 18px;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 12px;
  }

  .mmlc-quick-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .mmlc-quick-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .mmlc-quick-card__text strong {
    font-size: 0.96rem;
  }

  .mmlc-quick-card__text span {
    font-size: 0.84rem;
  }

  .mmlc-contact-main {
    padding: 0 16px 36px;
    gap: 16px;
  }

  .mmlc-contact-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .mmlc-contact-form__heading h2 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 800;
  }

  .mmlc-contact-aside {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .mmlc-contact-aside h2 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
  }

  .mmlc-contact-offices {
    padding: 0 16px;
  }

  .mmlc-contact-offices__head h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
  }

  .mmlc-office-card {
    border-radius: 14px;
  }

  .mmlc-office-card__map {
    aspect-ratio: 4 / 3;
  }

  .mmlc-office-card__body {
    padding: 18px 18px 20px;
  }

  .mmlc-office-card h3 {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 800;
  }

  .mmlc-office-card__actions .button {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============================================================
 * Services page v2 — premium structured layout
 * ============================================================ */

.mmlc-services-page {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 30%, #ffffff 100%);
}

.mmlc-services-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── 1. Hero ──────────────────────────────────────────────── */
.mmlc-svc-hero {
  position: relative;
  padding: 80px var(--container-pad) 56px;
  background:
    radial-gradient(1100px 480px at 50% -20%, rgba(226, 193, 106, 0.18), transparent 60%),
    linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  border-bottom: 1px solid #e6ebe2;
}

.mmlc-svc-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.mmlc-svc-hero .section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-svc-hero h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.mmlc-svc-hero p {
  max-width: 680px;
  margin: 18px auto 28px;
  color: #4f5963;
  font-size: 1.04rem;
  line-height: 1.65;
}

/* Search */
.mmlc-svc-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
  padding: 8px 8px 8px 18px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 54, 41, 0.08);
}

.mmlc-svc-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F6F5B;
}

.mmlc-svc-search__icon svg {
  width: 18px;
  height: 18px;
}

.mmlc-svc-search input {
  padding: 10px 0;
  color: #101418;
  background: transparent;
  border: 0;
  font-size: 0.96rem;
  outline: none;
}

.mmlc-svc-search input::placeholder {
  color: #93999e;
}

.mmlc-svc-search__submit {
  padding: 10px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1px solid #073629;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

/* Trust stats */
.mmlc-svc-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.mmlc-svc-hero__stats li {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e6ebe2;
  border-radius: 12px;
}

.mmlc-svc-hero__stats strong {
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.mmlc-svc-hero__stats span {
  color: #6d7378;
  font-size: 0.78rem;
}

/* ── 2. Engagement promise band ───────────────────────────── */
.mmlc-svc-promise {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-promise__head {
  margin-bottom: 22px;
  text-align: center;
}

.mmlc-svc-promise__head .section-kicker {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-promise__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mmlc-svc-promise__grid article {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-svc-promise__grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.5);
  box-shadow: 0 18px 36px rgba(7, 54, 41, 0.1);
}

.mmlc-svc-promise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 12px;
}

.mmlc-svc-promise__icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-svc-promise__grid h3 {
  margin: 0;
  color: #0e1a1f;
  font-size: 1.02rem;
  font-weight: 700;
}

.mmlc-svc-promise__grid p {
  margin: 0;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── 3 & 4. Category bands ────────────────────────────────── */
.mmlc-svc-category {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-category--alt {
  margin-top: 56px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid #e6ebe2;
  border-bottom: 1px solid #e6ebe2;
  background: linear-gradient(180deg, #f6f9f3 0%, rgba(246, 249, 243, 0.4) 100%);
}

.mmlc-svc-category__head {
  margin-bottom: 28px;
  text-align: center;
}

.mmlc-svc-category__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-svc-category__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 420;
  line-height: 1.08;
}

.mmlc-svc-category__head p {
  max-width: 600px;
  margin: 10px auto 0;
  color: #4f5963;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ── Service deep cards ───────────────────────────────────── */
.mmlc-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mmlc-svc-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 26px 24px 24px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(7, 54, 41, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mmlc-svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 28px 52px rgba(7, 54, 41, 0.14);
}

.mmlc-svc-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mmlc-svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1.5px solid rgba(226, 193, 106, 0.5);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(7, 54, 41, 0.18);
}

.mmlc-svc-card__icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-svc-card__kicker {
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mmlc-svc-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.mmlc-svc-card__summary {
  margin: 0;
  color: #55616d;
  font-size: 0.94rem;
  line-height: 1.55;
}

.mmlc-svc-card__bullets {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  list-style: none;
  background: #f6f9f3;
  border: 1px solid #e6ebe2;
  border-radius: 10px;
}

.mmlc-svc-card__bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #2c3640;
  font-size: 0.88rem;
  line-height: 1.45;
}

.mmlc-svc-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F6F5B;
  flex-shrink: 0;
}

.mmlc-svc-card__check svg {
  width: 16px;
  height: 16px;
}

.mmlc-svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #073629;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 54, 41, 0.3);
  width: fit-content;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mmlc-svc-card__cta:hover {
  color: var(--gold, #B88732);
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-svc-card__cta svg {
  width: 14px;
  height: 14px;
}

/* ── Search empty state ───────────────────────────────────── */
.mmlc-svc-empty {
  max-width: 480px;
  margin: 40px auto 0;
  padding: 18px 22px;
  color: #4f5963;
  text-align: center;
  background: #fffaf0;
  border: 1px dashed rgba(184, 135, 50, 0.55);
  border-radius: 12px;
}

.mmlc-svc-empty a {
  color: #073629;
  font-weight: 700;
}

/* ── 5. Engagement process ────────────────────────────────── */
.mmlc-svc-process {
  max-width: var(--maxw);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-process__head {
  margin-bottom: 30px;
  text-align: center;
}

.mmlc-svc-process__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-process__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-process__head p {
  max-width: 620px;
  margin: 12px auto 0;
  color: #4f5963;
  font-size: 0.98rem;
  line-height: 1.55;
}

.mmlc-svc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-svc-process__steps li {
  display: grid;
  gap: 14px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(7, 54, 41, 0.06);
}

.mmlc-svc-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid #fff8e6;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.mmlc-svc-process__steps strong {
  display: block;
  margin-bottom: 4px;
  color: #0e1a1f;
  font-size: 1.05rem;
  font-weight: 700;
}

.mmlc-svc-process__steps p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── 6. Audience ──────────────────────────────────────────── */
.mmlc-svc-audience {
  max-width: var(--maxw);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-audience__head {
  margin-bottom: 28px;
  text-align: center;
}

.mmlc-svc-audience__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-audience__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mmlc-svc-audience__grid article {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f9f3 100%);
  border: 1px solid #e0e5dd;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-svc-audience__grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.5);
  box-shadow: 0 16px 32px rgba(7, 54, 41, 0.1);
}

.mmlc-svc-audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #073629;
  background: #ffffff;
  border: 1.5px solid rgba(184, 135, 50, 0.4);
  border-radius: 50%;
}

.mmlc-svc-audience__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-svc-audience__grid h3 {
  margin: 0;
  color: #0e1a1f;
  font-size: 1.02rem;
  font-weight: 700;
}

.mmlc-svc-audience__grid p {
  margin: 0;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── 7. FAQ ───────────────────────────────────────────────── */
.mmlc-svc-faq {
  max-width: 920px;
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-faq__head {
  margin-bottom: 22px;
  text-align: center;
}

.mmlc-svc-faq__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-faq__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-faq__list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mmlc-svc-faq details {
  padding: 4px 4px 4px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.mmlc-svc-faq details[open] {
  border-color: rgba(184, 135, 50, 0.55);
}

.mmlc-svc-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #0e1a1f;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mmlc-svc-faq summary::-webkit-details-marker {
  display: none;
}

.mmlc-svc-faq summary::after {
  color: var(--gold, #B88732);
  font-size: 1.4rem;
  font-weight: 700;
  content: "+";
  line-height: 1;
  flex-shrink: 0;
}

.mmlc-svc-faq details[open] summary::after {
  content: "−";
}

.mmlc-svc-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── 8. Final CTA band ────────────────────────────────────── */
.mmlc-svc-cta {
  max-width: var(--maxw);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px 44px;
  color: #ffffff;
  background:
    radial-gradient(700px 280px at 80% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(7, 54, 41, 0.25);
}

.mmlc-svc-cta .section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-cta p {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.mmlc-svc-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mmlc-svc-cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-svc-cta__actions .button.primary {
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid #E2C16A;
}

.mmlc-svc-cta__actions .button.secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mmlc-svc-cta__actions .button svg {
  width: 14px;
  height: 14px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-svc-promise__grid,
  .mmlc-svc-process__steps,
  .mmlc-svc-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mmlc-svc-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .mmlc-svc-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mmlc-svc-cta__actions .button {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .mmlc-svc-hero {
    padding: 44px 18px 32px;
  }

  .mmlc-svc-hero h1 {
    font-family: var(--font-body);
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .mmlc-svc-hero p {
    font-size: 0.94rem;
  }

  .mmlc-svc-search {
    grid-template-columns: auto 1fr;
    border-radius: 14px;
    padding: 8px 8px 8px 14px;
  }

  .mmlc-svc-search__submit {
    grid-column: 1 / -1;
    border-radius: 10px;
    padding: 10px 16px;
  }

  .mmlc-svc-hero__stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mmlc-svc-promise,
  .mmlc-svc-process,
  .mmlc-svc-audience,
  .mmlc-svc-faq,
  .mmlc-svc-cta {
    margin-top: 40px;
    padding: 0 16px;
  }

  .mmlc-svc-category {
    margin-top: 40px;
    padding: 0 16px;
  }

  .mmlc-svc-category--alt {
    padding: 36px 16px;
  }

  .mmlc-svc-promise__grid,
  .mmlc-svc-process__steps,
  .mmlc-svc-audience__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-svc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mmlc-svc-card {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .mmlc-svc-card h3 {
    font-family: var(--font-body);
    font-size: 1.18rem;
    font-weight: 800;
  }

  .mmlc-svc-category__head h2,
  .mmlc-svc-promise__head h2,
  .mmlc-svc-process__head h2,
  .mmlc-svc-audience__head h2,
  .mmlc-svc-faq__head h2,
  .mmlc-svc-cta h2 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.18;
  }

  .mmlc-svc-cta__inner {
    border-radius: 14px;
  }
}

/* ============================================================
 * Service Landing Template — used by all 12 service detail pages.
 * Sections: hero w/ inline enquire form, what's included, process,
 * deliverables + pricing, use cases, FAQ, related, final CTA.
 * ============================================================ */

.mmlc-service-landing {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 30%, #ffffff 100%);
}

/* ── Hero ─────────────────────────────────────────────────── */
.mmlc-svc-landing-hero {
  position: relative;
  padding: 36px var(--container-pad) 56px;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(226, 193, 106, 0.16), transparent 60%),
    linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  border-bottom: 1px solid #e6ebe2;
}

.mmlc-svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: var(--maxw);
  margin: 0 auto 22px;
  color: #6d7378;
  font-size: 0.82rem;
}

.mmlc-svc-breadcrumb a {
  color: #073629;
  font-weight: 600;
  text-decoration: none;
}

.mmlc-svc-breadcrumb a:hover {
  color: var(--gold, #B88732);
}

.mmlc-svc-breadcrumb > span:not(:last-child) {
  color: #b3bab1;
}

.mmlc-svc-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 460px);
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}

.mmlc-svc-landing-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mmlc-svc-landing-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 6px 14px 6px 8px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-svc-landing-hero__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 50%;
}

.mmlc-svc-landing-hero__tag-icon svg {
  width: 14px;
  height: 14px;
}

.mmlc-svc-landing-hero h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.mmlc-svc-landing-hero__tagline {
  margin: 0;
  color: var(--gold, #B88732);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 460;
  font-style: italic;
  line-height: 1.3;
}

.mmlc-svc-landing-hero__summary {
  margin: 0;
  max-width: 620px;
  color: #4f5963;
  font-size: 1.02rem;
  line-height: 1.7;
}

.mmlc-svc-landing-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-svc-landing-hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #073629;
  font-size: 0.86rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
}

.mmlc-svc-landing-hero__pills svg {
  width: 14px;
  height: 14px;
  color: #1F6F5B;
}

.mmlc-svc-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.mmlc-svc-landing-hero__actions .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-svc-landing-hero__actions .button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1px solid #073629;
}

.mmlc-svc-landing-hero__actions .button.secondary {
  color: #073629;
  background: #ffffff;
  border: 1px solid #d8dfd6;
}

.mmlc-svc-landing-hero__actions .button svg {
  width: 14px;
  height: 14px;
}

/* Hero inline enquire form */
.mmlc-svc-landing-hero__form {
  position: sticky;
  top: 100px;
}

.mmlc-svc-enquire {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 22px;
  background: linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #093f31 100%);
  color: #ffffff;
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(7, 54, 41, 0.22);
}

.mmlc-svc-enquire__heading {
  grid-column: 1 / -1;
}

.mmlc-svc-enquire__heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 480;
  line-height: 1.15;
}

.mmlc-svc-enquire__heading p {
  margin: 6px 0 0;
  color: rgba(247, 250, 246, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mmlc-svc-enquire .mmlc-field {
  display: grid;
  gap: 5px;
}

.mmlc-svc-enquire .mmlc-field--wide {
  grid-column: 1 / -1;
}

.mmlc-svc-enquire .mmlc-field__label {
  color: rgba(247, 250, 246, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mmlc-svc-enquire input,
.mmlc-svc-enquire textarea {
  width: 100%;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 0.92rem;
}

.mmlc-svc-enquire input::placeholder,
.mmlc-svc-enquire textarea::placeholder {
  color: rgba(247, 250, 246, 0.6);
}

.mmlc-svc-enquire input:focus,
.mmlc-svc-enquire textarea:focus {
  outline: none;
  border-color: var(--gold-2, #E2C16A);
  background: rgba(255, 255, 255, 0.16);
}

.mmlc-svc-enquire textarea {
  min-height: 88px;
  resize: vertical;
}

.mmlc-svc-enquire__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: #1d1308;
  background: linear-gradient(90deg, #c7933f, #e1bc6a);
  border: 1px solid rgba(236, 199, 124, 0.95);
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

.mmlc-svc-enquire__submit svg {
  width: 14px;
  height: 14px;
}

.mmlc-svc-enquire__secure {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 6px 8px;
  color: rgba(247, 250, 246, 0.78);
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mmlc-svc-enquire__secure svg {
  width: 12px;
  height: 12px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-svc-enquire .form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(247, 250, 246, 0.85);
  font-size: 0.82rem;
}

/* ── Shared section heads ────────────────────────────────── */
.mmlc-svc-landing-section {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-svc-landing-section__head {
  margin-bottom: 28px;
  text-align: center;
}

.mmlc-svc-landing-section__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-landing-section__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 420;
  line-height: 1.1;
}

/* ── What's Included ─────────────────────────────────────── */
.mmlc-svc-included__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mmlc-svc-included__grid article {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-svc-included__grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 40px rgba(7, 54, 41, 0.12);
}

.mmlc-svc-included__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 12px;
}

.mmlc-svc-included__icon svg {
  width: 22px;
  height: 22px;
}

.mmlc-svc-included__grid h3 {
  margin: 0;
  color: #0e1a1f;
  font-size: 1.02rem;
  font-weight: 700;
}

.mmlc-svc-included__grid p {
  margin: 0;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ── Process ────────────────────────────────────────────── */
.mmlc-svc-landing-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-svc-landing-process__steps li {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-svc-landing-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid #fff8e6;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.mmlc-svc-landing-process__steps strong {
  display: block;
  margin-bottom: 4px;
  color: #0e1a1f;
  font-size: 1.02rem;
  font-weight: 700;
}

.mmlc-svc-landing-process__steps p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── Deliverables + Pricing ──────────────────────────────── */
.mmlc-svc-deliverables {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.mmlc-svc-deliverables__panel,
.mmlc-svc-deliverables__pricing {
  padding: 30px 28px;
  border-radius: 16px;
}

.mmlc-svc-deliverables__panel {
  background: #ffffff;
  border: 1px solid #d8dfd6;
  box-shadow: 0 16px 32px rgba(7, 54, 41, 0.06);
}

.mmlc-svc-deliverables__panel header {
  margin-bottom: 16px;
  text-align: left;
}

.mmlc-svc-deliverables__panel .section-kicker,
.mmlc-svc-deliverables__pricing-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-deliverables__panel h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 460;
  line-height: 1.1;
}

.mmlc-svc-deliverables__panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-svc-deliverables__panel li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  color: #2c3640;
  font-size: 0.94rem;
  line-height: 1.5;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 10px;
}

.mmlc-svc-deliverables__panel li svg {
  width: 18px;
  height: 18px;
  color: #1F6F5B;
}

.mmlc-svc-deliverables__pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(600px 240px at 90% -20%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
}

.mmlc-svc-deliverables__pricing-tag {
  color: var(--gold-2, #E2C16A);
}

.mmlc-svc-deliverables__pricing h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 460;
  line-height: 1.15;
}

.mmlc-svc-deliverables__pricing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.6;
}

.mmlc-svc-deliverables__pricing .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 20px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid #E2C16A;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.mmlc-svc-deliverables__pricing .button svg {
  width: 14px;
  height: 14px;
}

/* ── Use cases ───────────────────────────────────────────── */
.mmlc-svc-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mmlc-svc-usecases__grid article {
  padding: 22px 24px;
  background: linear-gradient(150deg, #ffffff 0%, #f6f9f3 100%);
  border: 1px solid #e0e5dd;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mmlc-svc-usecases__grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.5);
}

.mmlc-svc-usecases__grid h3 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.mmlc-svc-usecases__grid p {
  margin: 8px 0 0;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.mmlc-svc-landing-faq {
  max-width: 880px;
}

.mmlc-svc-landing-faq__list {
  display: grid;
  gap: 10px;
}

.mmlc-svc-landing-faq details {
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.mmlc-svc-landing-faq details[open] {
  border-color: rgba(184, 135, 50, 0.6);
}

.mmlc-svc-landing-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #0e1a1f;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mmlc-svc-landing-faq summary::-webkit-details-marker {
  display: none;
}

.mmlc-svc-landing-faq summary::after {
  color: var(--gold, #B88732);
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.mmlc-svc-landing-faq details[open] summary::after {
  content: "−";
}

.mmlc-svc-landing-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Related services ─────────────────────────────────────── */
.mmlc-svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mmlc-svc-related__card {
  display: grid;
  gap: 12px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-svc-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 40px rgba(7, 54, 41, 0.12);
}

.mmlc-svc-related__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 11px;
}

.mmlc-svc-related__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-svc-related__card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.18;
}

.mmlc-svc-related__card p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mmlc-svc-related__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #073629;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mmlc-svc-related__cta svg {
  width: 14px;
  height: 14px;
}

/* ── Final CTA ────────────────────────────────────────────── */
.mmlc-svc-landing-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 30px;
  align-items: center;
  padding: 38px 42px;
  color: #ffffff;
  background:
    radial-gradient(700px 280px at 80% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
}

.mmlc-svc-landing-cta .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-svc-landing-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-svc-landing-cta p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.mmlc-svc-landing-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mmlc-svc-landing-cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-svc-landing-cta__actions .button.primary {
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid #E2C16A;
}

.mmlc-svc-landing-cta__actions .button.secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mmlc-svc-landing-cta__actions .button svg {
  width: 14px;
  height: 14px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-svc-landing-hero__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-svc-landing-hero__form {
    position: static;
  }

  .mmlc-svc-included__grid,
  .mmlc-svc-landing-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-svc-deliverables {
    grid-template-columns: 1fr;
  }

  .mmlc-svc-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mmlc-svc-landing-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .mmlc-svc-landing-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mmlc-svc-landing-cta__actions .button {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .mmlc-svc-landing {
    padding-bottom: 96px;
  }

  .mmlc-svc-landing-hero {
    padding: 24px 16px 32px;
  }

  .mmlc-svc-landing-hero h1 {
    font-family: var(--font-body);
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .mmlc-svc-landing-hero__tagline {
    font-size: 1rem;
  }

  .mmlc-svc-landing-hero__summary {
    font-size: 0.94rem;
  }

  .mmlc-svc-enquire {
    padding: 18px 16px;
    border-radius: 14px;
    grid-template-columns: 1fr;
  }

  .mmlc-svc-enquire__heading h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
  }

  .mmlc-svc-landing-section {
    margin-top: 40px;
    padding: 0 16px;
  }

  .mmlc-svc-landing-section__head h2 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.18;
  }

  .mmlc-svc-included__grid,
  .mmlc-svc-landing-process__steps,
  .mmlc-svc-usecases__grid,
  .mmlc-svc-related__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-svc-deliverables__panel,
  .mmlc-svc-deliverables__pricing {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .mmlc-svc-deliverables__panel h2,
  .mmlc-svc-deliverables__pricing h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 800;
  }

  .mmlc-svc-landing-cta__inner {
    border-radius: 14px;
    padding: 24px 20px;
  }

  .mmlc-svc-landing-cta h2 {
    font-family: var(--font-body);
    font-size: 1.45rem;
    font-weight: 800;
  }

  .mmlc-svc-related__card h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 800;
  }
}

/* ============================================================
 * Header v2 — mega-dropdown for Services, all 12 services listed
 * across Legal / Business columns + a "not sure where to start" CTA.
 * ============================================================ */

/* Wider hit area for the mega-dropdown trigger */
.has-dropdown--wide {
  position: relative;
}

/* Mega dropdown: 2 service columns + 1 CTA column */
.dropdown-menu--mega {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 24px;
  width: min(880px, 92vw);
  padding: 22px 24px 24px;
  background: #ffffff;
  border: 1px solid #e6ebe2;
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(7, 54, 41, 0.16);
}

.has-dropdown--wide .dropdown-menu--mega {
  /* Anchor centrally so the wide panel doesn't clip on the right edge */
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

.has-dropdown--wide:hover .dropdown-menu--mega,
.has-dropdown--wide:focus-within .dropdown-menu--mega {
  transform: translateX(-50%) translateY(0);
}

.dropdown-col {
  display: grid;
  gap: 6px;
  align-content: start;
}

.dropdown-col__heading {
  margin-bottom: 6px;
  padding-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid #ebefe8;
}

.dropdown-menu--mega a {
  display: block;
  padding: 7px 10px;
  color: #0e1a1f;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu--mega a:hover {
  color: #073629;
  background: #f6f9f3;
}

.dropdown-col--cta {
  padding: 16px 16px 18px;
  background: linear-gradient(160deg, #073629 0%, #0a4c3a 100%);
  color: #ffffff;
  border-radius: 12px;
}

.dropdown-col--cta .dropdown-col__heading {
  color: var(--gold-2, #E2C16A);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.dropdown-col--cta p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.5;
}

.dropdown-col__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.dropdown-col__button:hover {
  color: #073629;
  background: #f0cc83;
}

.dropdown-col__link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.dropdown-col__link:hover {
  color: var(--gold-2, #E2C16A);
}

/* ── Mobile: stack the mega-dropdown into a single column ──── */
@media (max-width: 980px) {
  .dropdown-menu--mega {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
    padding: 12px;
    box-shadow: none;
    border: 0;
    border-radius: 8px;
    background: var(--ivory);
  }

  .has-dropdown--wide .dropdown-menu--mega {
    left: auto;
    transform: none;
  }

  .has-dropdown--wide:hover .dropdown-menu--mega,
  .has-dropdown--wide:focus-within .dropdown-menu--mega {
    transform: none;
  }

  .dropdown-col {
    gap: 2px;
  }

  .dropdown-col__heading {
    padding-top: 6px;
    margin-bottom: 2px;
  }

  .dropdown-menu--mega a {
    padding: 9px 10px;
    font-size: 0.94rem;
  }

  .dropdown-col--cta {
    padding: 14px 14px 16px;
    margin-top: 6px;
  }

  .dropdown-col--cta p {
    font-size: 0.84rem;
  }
}

/* ============================================================
 * About page v2
 * ============================================================ */

.mmlc-about-page {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 40%, #ffffff 100%);
}

.mmlc-about-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.mmlc-about-hero {
  position: relative;
  padding: 36px var(--container-pad) 60px;
  background:
    radial-gradient(960px 460px at 88% -10%, rgba(226, 193, 106, 0.18), transparent 60%),
    linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  border-bottom: 1px solid #e6ebe2;
}

.mmlc-about-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.mmlc-about-hero .mmlc-svc-breadcrumb {
  margin-bottom: 24px;
}

.mmlc-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.mmlc-about-hero__copy .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-about-hero__copy h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.mmlc-about-hero__lead {
  margin: 18px 0 0;
  color: #4f5963;
  font-size: 1.04rem;
  line-height: 1.7;
}

.mmlc-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mmlc-about-hero__actions .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-about-hero__actions .button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1px solid #073629;
}

.mmlc-about-hero__actions .button.secondary {
  color: #073629;
  background: #ffffff;
  border: 1px solid #d8dfd6;
}

.mmlc-about-hero__actions .button svg {
  width: 14px;
  height: 14px;
}

.mmlc-about-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(7, 54, 41, 0.18);
}

.mmlc-about-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mmlc-about-hero__media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  color: #ffffff;
  background: rgba(7, 54, 41, 0.86);
  border: 1px solid rgba(226, 193, 106, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
}

.mmlc-about-hero__caption-label {
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Stats strip ──────────────────────────────────────────── */
.mmlc-about-stats {
  max-width: var(--maxw);
  margin: -28px auto 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.mmlc-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(7, 54, 41, 0.1);
}

.mmlc-about-stats__grid article {
  display: grid;
  gap: 4px;
  padding: 6px 12px;
  text-align: center;
  border-left: 1px solid #ebefe8;
}

.mmlc-about-stats__grid article:first-child {
  border-left: 0;
}

.mmlc-about-stats__grid strong {
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.mmlc-about-stats__grid span {
  color: #6d7378;
  font-size: 0.84rem;
}

/* ── Section heads (shared) ───────────────────────────────── */
.mmlc-about-section {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-about-section__head {
  margin-bottom: 28px;
  text-align: center;
}

.mmlc-about-section__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-about-section__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 420;
  line-height: 1.1;
}

/* ── Story ───────────────────────────────────────────────── */
.mmlc-about-story__head {
  margin-bottom: 28px;
  text-align: center;
}

.mmlc-about-story__head .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-about-story__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 420;
  line-height: 1.1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.mmlc-about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 32px;
  align-items: start;
}

.mmlc-about-story__body p {
  margin: 0 0 14px;
  color: #2c3640;
  font-size: 1.02rem;
  line-height: 1.75;
}

.mmlc-about-story__body p em {
  color: var(--gold, #B88732);
  font-style: italic;
  font-weight: 600;
}

.mmlc-about-story__pull {
  position: relative;
  padding: 26px 24px;
  color: #ffffff;
  background:
    radial-gradient(500px 240px at 90% -10%, rgba(226, 193, 106, 0.18), transparent 60%),
    linear-gradient(140deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
}

.mmlc-about-story__pull-mark {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.5;
}

.mmlc-about-story__pull p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 420;
  line-height: 1.4;
}

.mmlc-about-story__pull p em {
  color: var(--gold-2, #E2C16A);
  font-style: italic;
}

/* ── Principles ──────────────────────────────────────────── */
.mmlc-about-principles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mmlc-about-principles__grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 24px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-about-principles__grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 24px 44px rgba(7, 54, 41, 0.12);
}

.mmlc-about-principles__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 14px;
}

.mmlc-about-principles__icon svg {
  width: 26px;
  height: 26px;
}

.mmlc-about-principles__grid h3 {
  margin: 0 0 6px;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.mmlc-about-principles__grid p {
  margin: 0;
  color: #55616d;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ── How we work ─────────────────────────────────────────── */
.mmlc-about-howwework__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-about-howwework__steps li {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-about-howwework__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 2px solid #fff8e6;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.mmlc-about-howwework__steps strong {
  display: block;
  margin-bottom: 4px;
  color: #0e1a1f;
  font-size: 1rem;
  font-weight: 700;
}

.mmlc-about-howwework__steps p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── Audience ────────────────────────────────────────────── */
.mmlc-about-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mmlc-about-audience__grid article {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f9f3 100%);
  border: 1px solid #e0e5dd;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mmlc-about-audience__grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 50, 0.5);
}

.mmlc-about-audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #073629;
  background: #ffffff;
  border: 1.5px solid rgba(184, 135, 50, 0.4);
  border-radius: 50%;
}

.mmlc-about-audience__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-about-audience__grid h3 {
  margin: 0;
  color: #0e1a1f;
  font-size: 1.02rem;
  font-weight: 700;
}

.mmlc-about-audience__grid p {
  margin: 0;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Offices ─────────────────────────────────────────────── */
.mmlc-about-offices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mmlc-about-office {
  padding: 26px 28px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
}

.mmlc-about-office__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-about-office h3 {
  margin: 0 0 16px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.mmlc-about-office ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-about-office li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.mmlc-about-office__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #073629;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 8px;
}

.mmlc-about-office__icon svg {
  width: 14px;
  height: 14px;
}

.mmlc-about-office li p {
  margin: 0;
  color: #2c3640;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mmlc-about-offices__cta {
  margin: 16px 0 0;
  text-align: center;
}

.mmlc-about-offices__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #073629;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 54, 41, 0.3);
  padding-bottom: 2px;
}

.mmlc-about-offices__cta a:hover {
  color: var(--gold, #B88732);
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-about-offices__cta svg {
  width: 14px;
  height: 14px;
}

/* ── Clarity (is / isn't) ────────────────────────────────── */
.mmlc-about-clarity__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mmlc-about-clarity__is,
.mmlc-about-clarity__isnt {
  padding: 26px 28px;
  border-radius: 16px;
}

.mmlc-about-clarity__is {
  background: #ffffff;
  border: 1px solid #d8dfd6;
}

.mmlc-about-clarity__isnt {
  color: #ffffff;
  background:
    radial-gradient(500px 200px at 100% -10%, rgba(226, 193, 106, 0.16), transparent 60%),
    linear-gradient(140deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
}

.mmlc-about-clarity__grid h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 480;
}

.mmlc-about-clarity__is h3 {
  color: #073629;
}

.mmlc-about-clarity__is h3 em {
  color: #1F6F5B;
  font-style: italic;
}

.mmlc-about-clarity__isnt h3 {
  color: var(--gold-2, #E2C16A);
}

.mmlc-about-clarity__isnt h3 em {
  color: #ffffff;
  font-style: italic;
}

.mmlc-about-clarity__grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-about-clarity__grid li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.94rem;
  line-height: 1.6;
}

.mmlc-about-clarity__is li {
  color: #2c3640;
}

.mmlc-about-clarity__isnt li {
  color: rgba(255, 255, 255, 0.9);
}

.mmlc-about-clarity__is li svg {
  width: 18px;
  height: 18px;
  color: #1F6F5B;
}

.mmlc-about-clarity__isnt li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2, #E2C16A);
}

/* ── CTA ─────────────────────────────────────────────────── */
.mmlc-about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  color: #ffffff;
  background:
    radial-gradient(700px 280px at 80% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
}

.mmlc-about-cta .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-about-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-about-cta p {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.mmlc-about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mmlc-about-cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-about-cta__actions .button.primary {
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid #E2C16A;
}

.mmlc-about-cta__actions .button.secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mmlc-about-cta__actions .button svg {
  width: 14px;
  height: 14px;
}

/* ── About responsive ────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-about-hero__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-about-stats__grid article {
    border-left: 0;
  }

  .mmlc-about-stats__grid article:nth-child(2n) {
    border-left: 1px solid #ebefe8;
  }

  .mmlc-about-howwework__steps,
  .mmlc-about-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-about-story__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mmlc-about-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .mmlc-about-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mmlc-about-cta__actions .button {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .mmlc-about-hero {
    padding: 28px 16px 44px;
  }

  .mmlc-about-hero__copy h1 {
    font-family: var(--font-body);
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .mmlc-about-hero__media img {
    min-height: 240px;
  }

  .mmlc-about-stats {
    margin-top: -22px;
    padding: 0 16px;
  }

  .mmlc-about-stats__grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .mmlc-about-stats__grid strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 800;
  }

  .mmlc-about-section {
    margin-top: 40px;
    padding: 0 16px;
  }

  .mmlc-about-section__head h2,
  .mmlc-about-story__head h2 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.18;
  }

  .mmlc-about-principles__grid,
  .mmlc-about-howwework__steps,
  .mmlc-about-audience__grid,
  .mmlc-about-offices__grid,
  .mmlc-about-clarity__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-about-principles__grid article {
    padding: 18px 18px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .mmlc-about-principles__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .mmlc-about-clarity__is,
  .mmlc-about-clarity__isnt,
  .mmlc-about-office {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .mmlc-about-cta__inner {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .mmlc-about-cta h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
  }
}

/* ============================================================
 * Knowledge page v2 — resource hub
 * ============================================================ */

.mmlc-knowledge-page {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 30%, #ffffff 100%);
}

.mmlc-knowledge-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.mmlc-knowledge-hero {
  padding: 36px var(--container-pad) 40px;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(226, 193, 106, 0.16), transparent 60%),
    linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  border-bottom: 1px solid #e6ebe2;
  text-align: center;
}

.mmlc-knowledge-hero__inner {
  max-width: 880px;
  margin: 0 auto;
}

.mmlc-knowledge-hero .mmlc-svc-breadcrumb {
  justify-content: center;
  margin-bottom: 22px;
  text-align: left;
}

.mmlc-knowledge-hero .section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-knowledge-hero h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.mmlc-knowledge-hero p {
  max-width: 720px;
  margin: 18px auto 24px;
  color: #4f5963;
  font-size: 1.02rem;
  line-height: 1.7;
}

.mmlc-knowledge-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 14px 8px 18px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(7, 54, 41, 0.08);
}

.mmlc-knowledge-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F6F5B;
}

.mmlc-knowledge-search__icon svg {
  width: 18px;
  height: 18px;
}

.mmlc-knowledge-search input {
  padding: 10px 0;
  color: #101418;
  background: transparent;
  border: 0;
  font-size: 0.96rem;
  outline: none;
}

/* ── Topic chips ─────────────────────────────────────────── */
.mmlc-knowledge-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: #073629;
  font-size: 0.86rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mmlc-topic-chip:hover {
  border-color: rgba(184, 135, 50, 0.5);
  background: #fbfdf8;
}

.mmlc-topic-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-color: #073629;
}

.mmlc-topic-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.mmlc-topic-chip__icon svg {
  width: 14px;
  height: 14px;
}

.mmlc-topic-chip.is-active .mmlc-topic-chip__icon {
  color: var(--gold-2, #E2C16A);
}

/* ── Featured guide ──────────────────────────────────────── */
.mmlc-knowledge-featured {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-knowledge-featured__card {
  position: relative;
  padding: 36px 40px;
  color: #ffffff;
  background:
    radial-gradient(620px 280px at 100% -10%, rgba(226, 193, 106, 0.2), transparent 60%),
    linear-gradient(140deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
}

.mmlc-knowledge-featured__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.14);
  border: 1px solid rgba(226, 193, 106, 0.35);
  border-radius: 999px;
}

.mmlc-knowledge-featured__card h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 420;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 760px;
}

.mmlc-knowledge-featured__excerpt {
  margin: 14px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.65;
}

.mmlc-knowledge-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.mmlc-knowledge-featured__cat {
  display: inline-block;
  padding: 3px 10px;
  color: #073629;
  font-weight: 800;
  background: var(--gold-2, #E2C16A);
  border-radius: 999px;
  font-size: 0.78rem;
}

.mmlc-knowledge-featured__body {
  margin-top: 18px;
}

.mmlc-knowledge-featured__body summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mmlc-knowledge-featured__body summary::-webkit-details-marker {
  display: none;
}

.mmlc-knowledge-featured__body summary svg {
  width: 14px;
  height: 14px;
}

.mmlc-knowledge-featured__body > div {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mmlc-knowledge-featured__body h3 {
  margin: 18px 0 6px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.mmlc-knowledge-featured__body h3:first-child {
  margin-top: 0;
}

.mmlc-knowledge-featured__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ── Articles grid ───────────────────────────────────────── */
.mmlc-knowledge-articles {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-knowledge-articles__head {
  margin-bottom: 26px;
  text-align: center;
}

.mmlc-knowledge-articles__head .section-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-knowledge-articles__head h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 420;
  line-height: 1.1;
}

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

.mmlc-knowledge-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-knowledge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.5);
  box-shadow: 0 20px 40px rgba(7, 54, 41, 0.1);
}

.mmlc-knowledge-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mmlc-knowledge-card__cat {
  display: inline-block;
  padding: 3px 10px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.18);
  border-radius: 999px;
}

.mmlc-knowledge-card__read {
  color: #93999e;
  font-size: 0.78rem;
}

.mmlc-knowledge-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.2;
}

.mmlc-knowledge-card > p {
  margin: 0;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mmlc-knowledge-card details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #073629;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(7, 54, 41, 0.3);
  width: fit-content;
}

.mmlc-knowledge-card details summary::-webkit-details-marker {
  display: none;
}

.mmlc-knowledge-card details summary svg {
  width: 12px;
  height: 12px;
}

.mmlc-knowledge-card details[open] summary {
  color: var(--gold, #B88732);
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-knowledge-card__body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ebefe8;
}

.mmlc-knowledge-card__body h4 {
  margin: 14px 0 4px;
  color: #073629;
  font-size: 0.94rem;
  font-weight: 700;
}

.mmlc-knowledge-card__body h4:first-child {
  margin-top: 0;
}

.mmlc-knowledge-card__body p {
  margin: 0;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.6;
}

.mmlc-knowledge-empty {
  max-width: 480px;
  margin: 28px auto 0;
  padding: 18px 22px;
  color: #4f5963;
  text-align: center;
  background: #fffaf0;
  border: 1px dashed rgba(184, 135, 50, 0.55);
  border-radius: 12px;
}

.mmlc-knowledge-empty a {
  color: #073629;
  font-weight: 700;
}

/* ── Checklists ──────────────────────────────────────────── */
.mmlc-knowledge-checklists {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-knowledge-checklists__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mmlc-knowledge-checklists__grid article {
  display: grid;
  gap: 10px;
  padding: 22px 22px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f9f3 100%);
  border: 1px solid #e0e5dd;
  border-radius: 14px;
}

.mmlc-knowledge-checklist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 11px;
}

.mmlc-knowledge-checklist__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-knowledge-checklists__grid h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 540;
  line-height: 1.2;
}

.mmlc-knowledge-checklists__grid > article > p {
  margin: 0;
  color: #55616d;
  font-size: 0.84rem;
  line-height: 1.5;
}

.mmlc-knowledge-checklists__grid ul {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.mmlc-knowledge-checklists__grid li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  color: #2c3640;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mmlc-knowledge-checklist__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F6F5B;
}

.mmlc-knowledge-checklist__bullet svg {
  width: 14px;
  height: 14px;
}

/* ── Glossary ────────────────────────────────────────────── */
.mmlc-knowledge-glossary {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-knowledge-glossary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.mmlc-knowledge-glossary__grid > div {
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
}

.mmlc-knowledge-glossary__grid dt {
  margin-bottom: 6px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 540;
}

.mmlc-knowledge-glossary__grid dd {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── CTA ─────────────────────────────────────────────────── */
.mmlc-knowledge-cta {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-knowledge-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  color: #ffffff;
  background:
    radial-gradient(700px 280px at 80% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
}

.mmlc-knowledge-cta .section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-knowledge-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 420;
  line-height: 1.15;
}

.mmlc-knowledge-cta p {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.mmlc-knowledge-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mmlc-knowledge-cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mmlc-knowledge-cta__actions .button.primary {
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid #E2C16A;
}

.mmlc-knowledge-cta__actions .button.secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mmlc-knowledge-cta__actions .button svg {
  width: 14px;
  height: 14px;
}

/* ── Knowledge responsive ────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-knowledge-articles__grid,
  .mmlc-knowledge-glossary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-knowledge-checklists__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mmlc-knowledge-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .mmlc-knowledge-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mmlc-knowledge-cta__actions .button {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .mmlc-knowledge-hero {
    padding: 28px 16px 32px;
  }

  .mmlc-knowledge-hero h1 {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .mmlc-knowledge-hero p {
    font-size: 0.94rem;
  }

  .mmlc-knowledge-topics {
    padding: 0 16px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .mmlc-topic-chip {
    flex-shrink: 0;
  }

  .mmlc-knowledge-featured,
  .mmlc-knowledge-articles,
  .mmlc-knowledge-checklists,
  .mmlc-knowledge-glossary,
  .mmlc-knowledge-cta {
    margin-top: 36px;
    padding: 0 16px;
  }

  .mmlc-knowledge-featured__card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .mmlc-knowledge-featured__card h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
  }

  .mmlc-knowledge-articles__grid,
  .mmlc-knowledge-checklists__grid,
  .mmlc-knowledge-glossary__grid {
    grid-template-columns: 1fr;
  }

  .mmlc-knowledge-card,
  .mmlc-knowledge-checklists__grid article {
    border-radius: 12px;
    padding: 18px 18px;
  }

  .mmlc-knowledge-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
  }

  .mmlc-knowledge-articles__head h2,
  .mmlc-knowledge-cta h2 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
  }

  .mmlc-knowledge-cta__inner {
    border-radius: 14px;
    padding: 22px 18px;
  }
}

/* ============================================================
 * v1.1.1 hotfix
 *   (a) Section kickers across new templates — global .section-kicker
 *       rule was bleeding through and clobbering color/margin. Force
 *       a consistent gold mono-font label.
 *   (b) Footer two-office display — global .footer-links a colour
 *       was being inherited inside the office labels.
 *   (c) Header mega-dropdown "Talk to MMLC →" link was rendering as
 *       --ink (black) on dark green because .dropdown-menu a
 *       (0,1,1) beat .dropdown-col__link (0,1,0).
 * ============================================================ */

/* ── (a) Section kickers — robust override ─────────────────── */
.mmlc-svc-landing-section__head .section-kicker,
.mmlc-svc-promise__head .section-kicker,
.mmlc-svc-category__head .section-kicker,
.mmlc-svc-process__head .section-kicker,
.mmlc-svc-audience__head .section-kicker,
.mmlc-svc-faq__head .section-kicker,
.mmlc-svc-cta .section-kicker,
.mmlc-about-section__head .section-kicker,
.mmlc-about-story__head .section-kicker,
.mmlc-about-cta .section-kicker,
.mmlc-knowledge-hero .section-kicker,
.mmlc-knowledge-articles__head .section-kicker,
.mmlc-knowledge-cta .section-kicker,
.mmlc-contact-hero .section-kicker,
.mmlc-contact-offices__head .section-kicker,
.mmlc-svc-hero .section-kicker,
.mmlc-svc-landing-hero .section-kicker {
  display: inline-block !important;
  margin: 0 0 10px !important;
  padding: 5px 14px !important;
  color: #073629 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  background: rgba(226, 193, 106, 0.18) !important;
  border: 1px solid rgba(184, 135, 50, 0.4) !important;
  border-radius: 999px !important;
}

/* Variants on dark backgrounds — gold pill on dark green */
.mmlc-svc-cta .section-kicker,
.mmlc-about-cta .section-kicker,
.mmlc-knowledge-cta .section-kicker,
.mmlc-svc-landing-cta .section-kicker {
  color: var(--gold-2, #E2C16A) !important;
  background: rgba(226, 193, 106, 0.14) !important;
  border-color: rgba(226, 193, 106, 0.4) !important;
}

/* Section H2 — guarantee display-font, not the legacy heavy sans */
.mmlc-about-section__head h2,
.mmlc-about-story__head h2,
.mmlc-svc-landing-section__head h2,
.mmlc-svc-promise__head h2,
.mmlc-svc-category__head h2,
.mmlc-svc-process__head h2,
.mmlc-svc-audience__head h2,
.mmlc-svc-faq__head h2,
.mmlc-knowledge-articles__head h2,
.mmlc-knowledge-hero h1 {
  font-family: var(--font-display) !important;
}

@media (max-width: 720px) {
  /* On mobile we keep body sans-serif heavy for legibility */
  .mmlc-about-section__head h2,
  .mmlc-about-story__head h2,
  .mmlc-svc-landing-section__head h2,
  .mmlc-svc-promise__head h2,
  .mmlc-svc-category__head h2,
  .mmlc-svc-process__head h2,
  .mmlc-svc-audience__head h2,
  .mmlc-svc-faq__head h2,
  .mmlc-knowledge-articles__head h2 {
    font-family: var(--font-body) !important;
    font-weight: 800;
  }
}

/* ── (b) Footer two-office display ─────────────────────────── */
.footer-contact .footer-offices {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.footer-contact .footer-office {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.footer-contact .footer-office strong {
  display: block !important;
  margin-bottom: 6px !important;
  color: var(--gold-2, #E2C16A) !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.footer-contact .footer-office p {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  background: transparent !important;
  border: 0 !important;
}

/* The two stand-alone phone/email <a> still belong to .footer-links a */
.footer-contact > a {
  margin-bottom: 4px;
}

/* ── (c) Header mega-dropdown CTA link colour ──────────────── */
/* .dropdown-menu a (0,1,1) was clobbering .dropdown-col__link (0,1,0).
   We bump specificity AND keep colour locked to white inside the
   dark CTA column. */
.dropdown-menu .dropdown-col--cta a,
.dropdown-menu .dropdown-col__link {
  color: rgba(255, 255, 255, 0.92);
}

.dropdown-menu .dropdown-col--cta a:hover,
.dropdown-menu .dropdown-col__link:hover {
  color: var(--gold-2, #E2C16A);
  background: transparent;
}

/* Gold "View All Services" button inside the CTA column */
.dropdown-menu .dropdown-col--cta .dropdown-col__button {
  color: #073629;
  background: var(--gold-2, #E2C16A);
  font-weight: 800;
}

.dropdown-menu .dropdown-col--cta .dropdown-col__button:hover {
  color: #073629;
  background: #f0cc83;
}

/* The "Talk to MMLC →" text link sits below — keep it as a text link,
   not the same hover treatment as ordinary dropdown items */
.dropdown-menu .dropdown-col--cta .dropdown-col__link {
  padding: 6px 0 0;
  background: transparent;
}

/* ============================================================
 * Documents page v2 — directory layout that maps each document
 * type to its dedicated service landing page.
 * Reuses .mmlc-knowledge-search, .mmlc-topic-chip, .mmlc-svc-landing-faq,
 * .mmlc-svc-landing-cta from earlier blocks for visual consistency.
 * ============================================================ */

.mmlc-documents-page {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 30%, #ffffff 100%);
}

.mmlc-documents-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.mmlc-docs-hero {
  padding: 36px var(--container-pad) 40px;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(226, 193, 106, 0.16), transparent 60%),
    linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  border-bottom: 1px solid #e6ebe2;
  text-align: center;
}

.mmlc-docs-hero__inner {
  max-width: 880px;
  margin: 0 auto;
}

.mmlc-docs-hero .mmlc-svc-breadcrumb {
  justify-content: center;
  margin-bottom: 22px;
  text-align: left;
}

.mmlc-docs-hero h1 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.mmlc-docs-hero p {
  max-width: 720px;
  margin: 18px auto 24px;
  color: #4f5963;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ── Document grid ───────────────────────────────────────── */
.mmlc-docs-grid-wrap {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 0 var(--gutter);
}

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

.mmlc-doc-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: 22px 22px 20px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 44px rgba(7, 54, 41, 0.14);
}

.mmlc-doc-card header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mmlc-doc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 11px;
}

.mmlc-doc-card__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-doc-card__cat {
  display: inline-block;
  padding: 3px 10px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.16);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-doc-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 540;
  line-height: 1.2;
}

.mmlc-doc-card > p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mmlc-doc-card__covers {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 12px 14px;
  list-style: none;
  background: #f6f9f3;
  border: 1px solid #e6ebe2;
  border-radius: 10px;
}

.mmlc-doc-card__covers li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  color: #2c3640;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mmlc-doc-card__covers svg {
  width: 14px;
  height: 14px;
  color: #1F6F5B;
}

.mmlc-doc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #073629;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(7, 54, 41, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mmlc-doc-card__cta:hover {
  color: var(--gold, #B88732);
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-doc-card__cta svg {
  width: 14px;
  height: 14px;
}

/* ── Document Kits feature ───────────────────────────────── */
.mmlc-docs-kits {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-docs-kits__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  color: #ffffff;
  background:
    radial-gradient(620px 280px at 90% -10%, rgba(226, 193, 106, 0.2), transparent 60%),
    linear-gradient(140deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
}

.mmlc-docs-kits__copy .section-kicker {
  display: inline-block;
  margin-bottom: 10px !important;
  color: var(--gold-2, #E2C16A) !important;
  background: rgba(226, 193, 106, 0.14) !important;
  border-color: rgba(226, 193, 106, 0.4) !important;
}

.mmlc-docs-kits__copy h2 {
  margin: 0;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 460;
  line-height: 1.1;
}

.mmlc-docs-kits__copy > p {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.65;
}

.mmlc-docs-kits__list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.mmlc-docs-kits__list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mmlc-docs-kits__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gold-2, #E2C16A);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.mmlc-docs-kits__list li svg {
  width: 14px;
  height: 14px;
}

.mmlc-docs-kits .button.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border: 1px solid var(--gold-2, #E2C16A);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.mmlc-docs-kits .button.primary svg {
  width: 14px;
  height: 14px;
}

.mmlc-docs-kits__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mmlc-docs-kits__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* ── Quality checks ──────────────────────────────────────── */
.mmlc-docs-checks {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-docs-checks__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-docs-checks__steps li {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
}

.mmlc-docs-checks__num {
  display: inline-block;
  color: var(--gold, #B88732);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.mmlc-docs-checks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--gold-2, #E2C16A);
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 10px;
}

.mmlc-docs-checks__icon svg {
  width: 18px;
  height: 18px;
}

.mmlc-docs-checks__steps strong {
  display: block;
  margin-bottom: 4px;
  color: #0e1a1f;
  font-size: 1.05rem;
  font-weight: 700;
}

.mmlc-docs-checks__steps p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── FAQ + CTA sections inherit from earlier blocks ──────── */
.mmlc-docs-faq {
  max-width: 880px;
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.mmlc-docs-cta {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-docs-checks__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmlc-docs-kits__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mmlc-docs-kits__inner {
    padding: 26px 22px;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .mmlc-docs-hero {
    padding: 28px 16px 32px;
  }

  .mmlc-docs-hero h1 {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .mmlc-docs-hero p {
    font-size: 0.94rem;
  }

  .mmlc-docs-grid-wrap,
  .mmlc-docs-kits,
  .mmlc-docs-checks,
  .mmlc-docs-faq,
  .mmlc-docs-cta {
    margin-top: 36px;
    padding: 0 16px;
  }

  .mmlc-docs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mmlc-doc-card {
    border-radius: 12px;
    padding: 18px 18px 18px;
  }

  .mmlc-doc-card h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 800;
  }

  .mmlc-docs-checks__steps {
    grid-template-columns: 1fr;
  }

  .mmlc-docs-kits__inner {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .mmlc-docs-kits__copy h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
  }

  .mmlc-docs-kits__media img {
    min-height: 200px;
  }
}

/* ============================================================
 * v1.1.3 fixes
 *   (a) About → Four principles: <h3>+<p> were dropping into the
 *       icon column (56px) → text wrapped one word per line.
 *       Force them into column 2.
 *   (b) Site-wide sticky mobile bar — was scoped to .mmlc-home,
 *       move to its own selector that works on every page.
 *   (c) Mobile mega-menu: was always-expanded on phones (too tall).
 *       Convert .has-dropdown into a click-accordion ≤980px.
 *   (d) Documents FAQ: grouped layout with theme headings,
 *       clean chevron, and an "Ask MMLC" CTA card at the end.
 * ============================================================ */

/* ── (a) About 'Four principles' grid fix ──────────────────── */
.mmlc-about-principles__grid article > h3,
.mmlc-about-principles__grid article > p {
  grid-column: 2;
  min-width: 0;
}

@media (max-width: 720px) {
  /* On mobile we stack everything cleanly */
  .mmlc-about-principles__grid article {
    grid-template-columns: 48px 1fr;
  }

  .mmlc-about-principles__grid article > h3,
  .mmlc-about-principles__grid article > p {
    grid-column: 2;
  }
}

/* ── (b) Site-wide sticky mobile bar (.mmlc-mobile-bar) ────── */
.mmlc-mobile-bar {
  display: none;
}

/* Hide on screens where the desktop header is already visible.
   Activate on phones only. */
@media (max-width: 560px) {
  body {
    /* Leave space at the bottom so content isn't covered by the bar */
    padding-bottom: 88px;
  }

  .mmlc-mobile-bar {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 58px;
    padding: 4px;
    background: #ffffff;
    border: 1px solid #d8dfd6;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(8, 20, 16, 0.18);
  }

  .mmlc-mobile-bar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 14px;
    color: #073629;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 12px;
  }

  .mmlc-mobile-bar__link svg {
    width: 18px;
    height: 18px;
    color: #1F6F5B;
  }

  .mmlc-mobile-bar__link + .mmlc-mobile-bar__link {
    border-left: 1px solid #e6ebe2;
    border-radius: 0;
  }

  /* When user focuses any form field, hide the bar so it doesn't
     cover the keyboard area. */
  body:has(input:focus, select:focus, textarea:focus) .mmlc-mobile-bar {
    transform: translateY(160%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}

/* The old, home-scoped .mobile-action-bar still ships in older
   page HTML if browser cached it. Make sure it doesn't conflict. */
@media (max-width: 560px) {
  .mmlc-home .mobile-action-bar,
  .mobile-action-bar {
    display: none !important;
  }
}

/* ── (c) Mobile nav accordion (≤980px) ─────────────────────── */
@media (max-width: 980px) {
  /* Every .has-dropdown starts CLOSED on mobile */
  .site-nav .has-dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 28px;
  }

  /* Caret chevron on top-level dropdown trigger */
  .site-nav .has-dropdown > a::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #6d7378;
    border-bottom: 2px solid #6d7378;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .site-nav .has-dropdown.is-open > a::after {
    transform: translateY(-30%) rotate(-135deg);
    border-color: var(--gold, #B88732);
  }

  .site-nav .has-dropdown.is-open > a {
    color: var(--gold, #B88732);
  }

  /* The dropdown content starts collapsed */
  .site-nav .has-dropdown .dropdown-menu,
  .site-nav .has-dropdown .dropdown-menu--mega {
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }

  .site-nav .has-dropdown.is-open .dropdown-menu,
  .site-nav .has-dropdown.is-open .dropdown-menu--mega {
    max-height: 2000px;
    padding: 8px 12px 12px;
    opacity: 1;
    visibility: visible;
  }

  /* Tighter mega-menu inside the accordion */
  .site-nav .has-dropdown--wide .dropdown-menu--mega {
    background: transparent;
    box-shadow: none;
    border: 0;
    gap: 12px;
  }

  .dropdown-col__heading {
    margin-top: 4px;
  }
}

/* ── (d) Documents FAQ — grouped layout ────────────────────── */
.mmlc-docs-faq__lead {
  max-width: 640px;
  margin: 12px auto 0;
  color: #4f5963;
  font-size: 0.98rem;
  line-height: 1.6;
}

.mmlc-docs-faq__groups {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.mmlc-docs-faq__group {
  display: grid;
  gap: 10px;
}

.mmlc-docs-faq__group-heading {
  margin: 0;
  padding: 4px 14px 4px 0;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mmlc-docs-faq__list {
  display: grid;
  gap: 8px;
}

.mmlc-docs-faq .mmlc-docs-faq__list details {
  padding: 0;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-docs-faq .mmlc-docs-faq__list details[open] {
  border-color: rgba(184, 135, 50, 0.6);
  box-shadow: 0 12px 28px rgba(7, 54, 41, 0.06);
}

.mmlc-docs-faq .mmlc-docs-faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #0e1a1f;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.mmlc-docs-faq .mmlc-docs-faq__list summary::-webkit-details-marker {
  display: none;
}

.mmlc-docs-faq__chev {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mmlc-docs-faq__chev::before,
.mmlc-docs-faq__chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold, #B88732);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.mmlc-docs-faq__chev::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.mmlc-docs-faq__chev::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.mmlc-docs-faq details[open] .mmlc-docs-faq__chev {
  background: var(--gold-2, #E2C16A);
  border-color: rgba(184, 135, 50, 0.55);
}

.mmlc-docs-faq details[open] .mmlc-docs-faq__chev::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.mmlc-docs-faq__body {
  padding: 0 18px 18px;
  border-top: 1px solid #ebefe8;
  margin-top: -1px;
}

.mmlc-docs-faq__body p {
  margin: 14px 0 0;
  color: #55616d;
  font-size: 0.94rem;
  line-height: 1.7;
}

.mmlc-docs-faq__body p strong {
  color: #073629;
  font-weight: 700;
}

/* Ask MMLC card at the bottom of the FAQ */
.mmlc-docs-faq__more {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #f6f1de 0%, #fbf6e7 100%);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 14px;
}

.mmlc-docs-faq__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-radius: 14px;
}

.mmlc-docs-faq__more-icon svg {
  width: 24px;
  height: 24px;
}

.mmlc-docs-faq__more strong {
  display: block;
  margin-bottom: 4px;
  color: #073629;
  font-size: 1rem;
  font-weight: 700;
}

.mmlc-docs-faq__more p {
  margin: 0;
  color: #4f5963;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mmlc-docs-faq__more-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border: 1px solid #073629;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.mmlc-docs-faq__more-cta svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 720px) {
  .mmlc-docs-faq__more {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 18px;
  }

  .mmlc-docs-faq__more-icon {
    margin: 0 auto;
  }

  .mmlc-docs-faq__more-cta {
    justify-self: center;
  }

  .mmlc-docs-faq__chev {
    width: 24px;
    height: 24px;
  }

  .mmlc-docs-faq__chev::before {
    width: 10px;
  }

  .mmlc-docs-faq__chev::after {
    height: 10px;
  }
}

/* ============================================================
 * v1.1.4 — hide floating WhatsApp chat on mobile
 * The new site-wide .mmlc-mobile-bar already exposes WhatsApp as
 * one of the two pinned actions, so the floating .whatsapp-chat
 * button is redundant + visually conflicts at ≤560px.
 * (Kept on tablet/desktop where the sticky bar is not shown.)
 * ============================================================ */
@media (max-width: 560px) {
  .whatsapp-chat {
    display: none !important;
  }
}

/* ============================================================
 * v1.1.5 — mobile nav cropping fix + utility overrides
 *
 * Root cause: the mega-dropdown's desktop rule
 *   .has-dropdown--wide .dropdown-menu--mega {
 *     left: 50%; transform: translateX(-50%) translateY(8px);
 *   }
 * was bleeding through on mobile, pushing the Services panel
 * off-canvas (which made "Documents" + the items beneath
 * appear cropped on the right). Reset transform/positioning
 * at ≤980px so the accordion content sits inline.
 * ============================================================ */

@media (max-width: 980px) {
  /* Cancel the desktop centering transform on every dropdown */
  .has-dropdown,
  .has-dropdown--wide {
    position: static;
  }

  .has-dropdown .dropdown-menu,
  .has-dropdown--wide .dropdown-menu--mega {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .has-dropdown--wide:hover .dropdown-menu--mega,
  .has-dropdown--wide:focus-within .dropdown-menu--mega,
  .has-dropdown.is-open .dropdown-menu,
  .has-dropdown.is-open .dropdown-menu--mega {
    transform: none !important;
  }

  /* Make sure dropdown labels themselves never get clipped */
  .site-nav .has-dropdown > a {
    white-space: nowrap;
    overflow: visible;
  }

  /* The nav.is-open container — keep content inside the viewport */
  .site-nav.is-open {
    box-sizing: border-box;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    right: 12px;
    left: 12px;
  }

  /* Inner dropdown items wrap if the text is too long for one line */
  .dropdown-menu a,
  .dropdown-menu--mega a {
    white-space: normal;
    word-break: break-word;
  }
}

/* ============================================================
 * v1.1.6 — footer watermark now renders the full brand name
 * "Maharshi Mehi Legal Consultancy" instead of "MMLC".
 * Old rule (.footer-watermark { font-size: 7rem }) was tuned
 * for 4 characters; with the full name it overflowed.
 * ============================================================ */

.footer-watermark {
  /* Fluid sizing — fills the footer width gracefully across breakpoints
     without overflowing on phones or shrinking to nothing on desktop. */
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 6.2vw, 5.4rem) !important;
  font-weight: 360 !important;
  letter-spacing: -0.005em;
  line-height: 1 !important;
  color: rgba(250, 250, 247, 0.07) !important;
  text-align: center;
  text-wrap: balance;
  margin: 60px var(--gutter) 0 !important;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  user-select: none;
}

@media (max-width: 720px) {
  .footer-watermark {
    /* Allow wrap on phones so the full name still fits readably */
    white-space: normal;
    margin-top: 36px !important;
    font-size: clamp(1.1rem, 8vw, 2.2rem) !important;
    line-height: 1.05 !important;
  }
}

/* ============================================================
 * v1.1.7 — dedicated hero background image per service page +
 * services hub. Image sits behind the hero content with a
 * gradient veil so text + dark-green enquire form stay readable
 * at every viewport. Mobile keeps the image but tones it down
 * (it sits below the copy now that the photo is hidden in some
 * places, and we add an additional white veil for legibility).
 * ============================================================ */

/* ── Service-landing hero with background image ───────────── */
.mmlc-svc-landing-hero--has-image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.mmlc-svc-landing-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mmlc-svc-landing-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  display: block;
}

/* Soft gradient veil — white on the left where the copy sits,
   fading to lighter on the right where the form panel sits */
.mmlc-svc-landing-hero--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(246, 249, 243, 0.92) 38%,
      rgba(246, 249, 243, 0.68) 62%,
      rgba(246, 249, 243, 0.32) 100%
    );
  pointer-events: none;
}

/* Lift the hero contents above the background and veil */
.mmlc-svc-landing-hero--has-image .mmlc-svc-breadcrumb,
.mmlc-svc-landing-hero--has-image .mmlc-svc-landing-hero__grid {
  position: relative;
  z-index: 2;
}

/* On wide screens the veil weakens further so the photo shows
   more — copy still reads because it sits at the left third. */
@media (min-width: 1280px) {
  .mmlc-svc-landing-hero--has-image::before {
    background:
      linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(246, 249, 243, 0.92) 32%,
        rgba(246, 249, 243, 0.55) 58%,
        rgba(246, 249, 243, 0.15) 100%
      );
  }
}

/* Tablet: image still visible but veil thicker */
@media (max-width: 1180px) {
  .mmlc-svc-landing-hero--has-image::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(246, 249, 243, 0.92) 60%,
        rgba(246, 249, 243, 0.86) 100%
      );
  }
}

/* Mobile: image hidden, fallback gradient kicks in for fastest LCP */
@media (max-width: 720px) {
  .mmlc-svc-landing-hero--has-image .mmlc-svc-landing-hero__bg {
    display: none;
  }

  .mmlc-svc-landing-hero--has-image::before {
    background: linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%);
  }
}

/* ── Services hub hero — same treatment ────────────────────── */
.mmlc-svc-hero--has-image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.mmlc-svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mmlc-svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

.mmlc-svc-hero--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(246, 249, 243, 0.92) 0%,
      rgba(246, 249, 243, 0.85) 40%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    radial-gradient(900px 420px at 50% -20%, rgba(226, 193, 106, 0.18), transparent 60%);
  pointer-events: none;
}

.mmlc-svc-hero--has-image .mmlc-svc-hero__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .mmlc-svc-hero--has-image .mmlc-svc-hero__bg {
    display: none;
  }

  .mmlc-svc-hero--has-image::before {
    background:
      linear-gradient(180deg, #f6f9f3 0%, #ffffff 100%),
      radial-gradient(900px 420px at 50% -20%, rgba(226, 193, 106, 0.16), transparent 60%);
  }
}

/* ============================================================
 * v1.2.0 — Blog single + archive + Knowledge blog grid.
 * Premium long-form layout: featured-image hero, sticky TOC,
 * typographic article body, author/E-E-A-T card, share bar,
 * post FAQ accordion, inline enquiry CTA, related cards.
 * ============================================================ */

/* ── Single post — page shell ──────────────────────────────── */
.mmlc-post-page {
  padding-bottom: 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 35%, #ffffff 100%);
}

/* ── Hero with featured image ──────────────────────────────── */
.mmlc-post-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px var(--container-pad) 60px;
  border-bottom: 1px solid #e6ebe2;
}

.mmlc-post-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mmlc-post-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.mmlc-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 54, 41, 0.74) 0%, rgba(7, 54, 41, 0.82) 60%, rgba(7, 54, 41, 0.92) 100%),
    radial-gradient(900px 360px at 80% -20%, rgba(226, 193, 106, 0.22), transparent 60%);
  pointer-events: none;
}

.mmlc-post-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff;
  text-align: left;
}

.mmlc-post-hero__crumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.mmlc-post-hero__crumbs a {
  color: var(--gold-2, #E2C16A);
  text-decoration: none;
  font-weight: 600;
}

.mmlc-post-hero__crumbs a:hover {
  color: #ffffff;
}

.mmlc-post-hero__crumbs > span:not(:last-child) {
  color: rgba(255, 255, 255, 0.45);
}

.mmlc-post-hero__cat {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-2, #E2C16A);
  border-radius: 999px;
}

.mmlc-post-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.mmlc-post-hero__excerpt {
  max-width: 720px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.mmlc-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmlc-post-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.mmlc-post-meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold-2, #E2C16A);
}

/* ── Body shell: sidebar + content ─────────────────────────── */
.mmlc-post-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px var(--gutter) 0;
  align-items: start;
}

.mmlc-post-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}

.mmlc-post-side__heading {
  margin: 0 0 8px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* TOC */
.mmlc-post-toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid #ebefe8;
}

.mmlc-post-toc li {
  padding: 0;
}

.mmlc-post-toc__h3 a {
  padding-left: 22px;
  font-size: 0.82rem;
}

.mmlc-post-toc a {
  display: block;
  padding: 4px 0 4px 12px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mmlc-post-toc a:hover {
  color: #073629;
}

.mmlc-post-toc a.is-active {
  color: #073629;
  border-left-color: var(--gold, #B88732);
  font-weight: 600;
}

/* Share row */
.mmlc-post-share > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmlc-post-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #073629;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mmlc-post-share__btn:hover {
  background: #f6f9f3;
  border-color: rgba(184, 135, 50, 0.5);
  color: var(--gold, #B88732);
}

.mmlc-post-share__btn.is-copied {
  background: #073629;
  color: var(--gold-2, #E2C16A);
  border-color: #073629;
}

.mmlc-post-share__btn svg {
  width: 16px;
  height: 16px;
}

/* ── Article body — premium typography ─────────────────────── */
.mmlc-post-body {
  min-width: 0;
  max-width: 720px;
}

.mmlc-post-content {
  font-size: 1.05rem;
  line-height: 1.78;
  color: #2c3640;
}

.mmlc-post-content p {
  margin: 0 0 1.2em;
}

.mmlc-post-content h2 {
  margin: 2.4em 0 0.8em;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.18;
  scroll-margin-top: 100px;
}

.mmlc-post-content h2:first-child {
  margin-top: 0;
}

.mmlc-post-content h3 {
  margin: 2em 0 0.6em;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 540;
  line-height: 1.2;
  scroll-margin-top: 100px;
}

.mmlc-post-content h4 {
  margin: 1.6em 0 0.4em;
  color: #0e1a1f;
  font-size: 1.05rem;
  font-weight: 700;
}

.mmlc-post-content ul,
.mmlc-post-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}

.mmlc-post-content li {
  margin-bottom: 0.4em;
}

.mmlc-post-content blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 460;
  line-height: 1.45;
  background: linear-gradient(135deg, #f6f1de 0%, #fbf6e7 100%);
  border-left: 4px solid var(--gold, #B88732);
  border-radius: 0 12px 12px 0;
}

.mmlc-post-content blockquote p {
  margin: 0;
}

.mmlc-post-content a {
  color: #073629;
  text-decoration: underline;
  text-decoration-color: rgba(184, 135, 50, 0.5);
  text-underline-offset: 3px;
  font-weight: 600;
}

.mmlc-post-content a:hover {
  text-decoration-color: var(--gold, #B88732);
}

.mmlc-post-content code,
.mmlc-post-content pre {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: #f6f9f3;
  border: 1px solid #e6ebe2;
  border-radius: 6px;
}

.mmlc-post-content code {
  padding: 2px 6px;
}

.mmlc-post-content pre {
  padding: 16px 18px;
  overflow-x: auto;
  line-height: 1.55;
}

.mmlc-post-content pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

.mmlc-post-content img,
.mmlc-post-content figure {
  display: block;
  margin: 1.8em auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.mmlc-post-content figure img {
  margin: 0;
}

.mmlc-post-content figcaption {
  margin-top: 8px;
  color: #6d7378;
  font-size: 0.86rem;
  text-align: center;
  font-style: italic;
}

.mmlc-post-content table {
  width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.mmlc-post-content table th,
.mmlc-post-content table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e6ebe2;
}

.mmlc-post-content table thead th {
  color: #073629;
  font-weight: 700;
  background: #f6f9f3;
  border-bottom: 2px solid #d8dfd6;
}

.mmlc-post-content strong {
  color: #073629;
  font-weight: 700;
}

/* Post FAQ block (extracted via mmlc:faq markers) */
.mmlc-post-faq {
  margin: 2.4em 0;
  padding: 24px 26px;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 14px;
}

.mmlc-post-faq h2 {
  margin: 0 0 16px !important;
  font-size: 1.45rem !important;
}

.mmlc-post-faq__list {
  display: grid;
  gap: 8px;
}

.mmlc-post-faq details {
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 10px;
}

.mmlc-post-faq details[open] {
  border-color: rgba(184, 135, 50, 0.55);
}

.mmlc-post-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #0e1a1f;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.mmlc-post-faq summary::-webkit-details-marker {
  display: none;
}

.mmlc-post-faq__chev {
  position: relative;
  width: 24px;
  height: 24px;
  background: #f6f9f3;
  border-radius: 50%;
  flex-shrink: 0;
}

.mmlc-post-faq__chev::before,
.mmlc-post-faq__chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold, #B88732);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.mmlc-post-faq__chev::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.mmlc-post-faq__chev::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.mmlc-post-faq details[open] .mmlc-post-faq__chev::after { transform: translate(-50%, -50%) scaleY(0); }

.mmlc-post-faq__body {
  padding: 0 16px 14px;
}

.mmlc-post-faq__body p {
  margin: 6px 0 0 !important;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Tags */
.mmlc-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2.4em 0 0;
  padding: 0;
  list-style: none;
}

.mmlc-post-tags a {
  display: inline-block;
  padding: 5px 12px;
  color: #073629 !important;
  font-size: 0.84rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
  text-decoration: none !important;
}

.mmlc-post-tags a:hover {
  border-color: rgba(184, 135, 50, 0.55);
  background: #f6f9f3;
}

/* Author / E-E-A-T card */
.mmlc-post-author {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
  margin: 2.6em 0 0;
  padding: 24px 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f9f3 100%);
  border: 1px solid #d8dfd6;
  border-radius: 14px;
}

.mmlc-post-author__avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(7, 54, 41, 0.12);
}

.mmlc-post-author__label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mmlc-post-author h3 {
  margin: 0 0 8px;
  color: #073629;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

.mmlc-post-author h3 a {
  color: inherit;
  text-decoration: none;
}

.mmlc-post-author p {
  margin: 0;
  color: #55616d;
  font-size: 0.94rem;
  line-height: 1.6;
}

.mmlc-post-author__org {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px !important;
  padding: 8px 12px;
  color: #073629 !important;
  font-size: 0.84rem !important;
  background: rgba(226, 193, 106, 0.14);
  border: 1px solid rgba(184, 135, 50, 0.3);
  border-radius: 999px;
}

.mmlc-post-author__org svg {
  width: 14px;
  height: 14px;
  color: var(--gold, #B88732);
}

/* Trust disclaimer */
.mmlc-post-disclaimer {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  margin: 1.6em 0;
  padding: 18px 20px;
  background: #fffaf0;
  border: 1px dashed rgba(184, 135, 50, 0.45);
  border-radius: 12px;
}

.mmlc-post-disclaimer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gold, #B88732);
  background: #ffffff;
  border-radius: 10px;
}

.mmlc-post-disclaimer__icon svg {
  width: 20px;
  height: 20px;
}

.mmlc-post-disclaimer p {
  margin: 0;
  color: #4f5963;
  font-size: 0.88rem;
  line-height: 1.6;
}

.mmlc-post-disclaimer strong {
  color: #073629;
}

/* Inline enquiry CTA on each post */
.mmlc-post-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 3em 0 0;
  padding: 32px;
  background:
    radial-gradient(700px 280px at 100% -20%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(135deg, #073629 0%, #0a4c3a 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.22);
  color: #ffffff;
}

.mmlc-post-cta__copy .section-kicker {
  color: var(--gold-2, #E2C16A) !important;
  background: rgba(226, 193, 106, 0.14) !important;
  border-color: rgba(226, 193, 106, 0.4) !important;
}

.mmlc-post-cta__copy h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 460;
  line-height: 1.18;
}

.mmlc-post-cta__copy p {
  margin: 12px 0 0 !important;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.6;
}

.mmlc-post-cta__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mmlc-post-cta__form .mmlc-field--wide {
  grid-column: 1 / -1;
}

.mmlc-post-cta__form .mmlc-field__label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mmlc-post-cta__form input,
.mmlc-post-cta__form textarea {
  width: 100%;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 0.92rem;
}

.mmlc-post-cta__form input::placeholder,
.mmlc-post-cta__form textarea::placeholder {
  color: rgba(247, 250, 246, 0.6);
}

.mmlc-post-cta__form input:focus,
.mmlc-post-cta__form textarea:focus {
  outline: none;
  border-color: var(--gold-2, #E2C16A);
  background: rgba(255, 255, 255, 0.16);
}

.mmlc-post-cta__form textarea {
  min-height: 80px;
  resize: vertical;
}

.mmlc-post-cta__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: #1d1308 !important;
  background: linear-gradient(90deg, #c7933f, #e1bc6a) !important;
  border: 1px solid rgba(236, 199, 124, 0.95) !important;
  border-radius: 12px !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  text-decoration: none;
  cursor: pointer;
}

.mmlc-post-cta__submit svg {
  width: 14px;
  height: 14px;
}

.mmlc-post-cta__secure {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 !important;
  padding: 6px 8px;
  color: rgba(247, 250, 246, 0.82);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mmlc-post-cta__secure svg {
  width: 12px;
  height: 12px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-post-cta__secure strong {
  color: var(--gold-2, #E2C16A);
}

.mmlc-post-cta .form-status {
  grid-column: 1 / -1;
  color: rgba(247, 250, 246, 0.86);
  font-size: 0.84rem;
}

/* ── Related posts ─────────────────────────────────────────── */
.mmlc-post-related {
  max-width: var(--maxw);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}

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

.mmlc-post-related__card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-post-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 44px rgba(7, 54, 41, 0.14);
}

.mmlc-post-related__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2ec;
}

.mmlc-post-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mmlc-post-related__card:hover .mmlc-post-related__media img {
  transform: scale(1.04);
}

.mmlc-post-related__body {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
}

.mmlc-post-related__cat {
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mmlc-post-related__card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.22;
}

.mmlc-post-related__card p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mmlc-post-related__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #073629;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mmlc-post-related__cta svg {
  width: 13px;
  height: 13px;
}

/* ── Knowledge page — blog grid (recent WP posts) ──────────── */
.mmlc-knowledge-blog {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
}

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

.mmlc-knowledge-post-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-knowledge-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 22px 44px rgba(7, 54, 41, 0.14);
}

.mmlc-knowledge-post-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2ec;
}

.mmlc-knowledge-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mmlc-knowledge-post-card:hover .mmlc-knowledge-post-card__media img {
  transform: scale(1.04);
}

.mmlc-knowledge-post-card__body {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
}

.mmlc-knowledge-post-card__body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mmlc-knowledge-post-card__cat {
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mmlc-knowledge-post-card__read {
  color: #93999e;
  font-size: 0.78rem;
}

.mmlc-knowledge-post-card h3 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.22;
}

.mmlc-knowledge-post-card p {
  margin: 0;
  color: #55616d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mmlc-knowledge-post-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #073629;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mmlc-knowledge-post-card__cta svg {
  width: 13px;
  height: 13px;
}

.mmlc-knowledge-blog__viewall {
  margin: 20px 0 0;
  text-align: center;
}

.mmlc-knowledge-blog__viewall a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #073629;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(7, 54, 41, 0.3);
}

.mmlc-knowledge-blog__viewall a:hover {
  color: var(--gold, #B88732);
  border-bottom-color: var(--gold, #B88732);
}

.mmlc-knowledge-blog__viewall svg {
  width: 14px;
  height: 14px;
}

/* ── Archive page (category / tag / author) ────────────────── */
.mmlc-archive-page {
  padding-bottom: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 30%, #ffffff 100%);
}

.mmlc-archive-grid-wrap {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 0 var(--gutter);
}

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

.mmlc-archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 28px rgba(7, 54, 41, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mmlc-archive-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 135, 50, 0.55);
  box-shadow: 0 24px 48px rgba(7, 54, 41, 0.12);
}

.mmlc-archive-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2ec;
}

.mmlc-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mmlc-archive-card:hover .mmlc-archive-card__media img {
  transform: scale(1.04);
}

.mmlc-archive-card__body {
  display: grid;
  gap: 10px;
  padding: 20px 22px 22px;
}

.mmlc-archive-card__body header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.mmlc-archive-card__cat {
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mmlc-archive-card__read {
  color: #93999e;
  font-size: 0.78rem;
}

.mmlc-archive-card h2 {
  margin: 0;
  color: #0e1a1f;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.18;
}

.mmlc-archive-card p {
  margin: 0;
  color: #55616d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mmlc-archive-card__body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #ebefe8;
}

.mmlc-archive-card__date {
  color: #93999e;
  font-size: 0.82rem;
}

.mmlc-archive-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #073629;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mmlc-archive-card__cta svg {
  width: 13px;
  height: 13px;
}

/* Pagination */
.mmlc-archive-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.mmlc-archive-pager a,
.mmlc-archive-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: #073629;
  font-size: 0.92rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 10px;
  text-decoration: none;
}

.mmlc-archive-pager a:hover {
  background: #f6f9f3;
  border-color: rgba(184, 135, 50, 0.55);
}

.mmlc-archive-pager .current {
  color: #ffffff;
  background: linear-gradient(135deg, #0a4c3a, #073629);
  border-color: #073629;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .mmlc-post-shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 40px;
  }

  .mmlc-post-side {
    position: static;
    margin-bottom: 32px;
  }

  .mmlc-post-body {
    max-width: 760px;
    margin: 0 auto;
  }

  .mmlc-post-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .mmlc-knowledge-blog__grid,
  .mmlc-post-related__grid,
  .mmlc-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mmlc-post-hero {
    padding: 36px 18px 40px;
  }

  .mmlc-post-hero__title {
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.12;
  }

  .mmlc-post-hero__excerpt {
    font-size: 0.96rem;
  }

  .mmlc-post-shell {
    padding: 28px 16px 0;
  }

  .mmlc-post-content {
    font-size: 1rem;
    line-height: 1.72;
  }

  .mmlc-post-content h2 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
  }

  .mmlc-post-content h3 {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 800;
  }

  .mmlc-post-author {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 18px 18px;
  }

  .mmlc-post-author__avatar img {
    width: 64px;
    height: 64px;
  }

  .mmlc-post-author h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 800;
  }

  .mmlc-post-cta {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .mmlc-post-cta__form {
    grid-template-columns: 1fr;
  }

  .mmlc-post-cta__copy h2 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 800;
  }

  .mmlc-knowledge-blog__grid,
  .mmlc-post-related__grid,
  .mmlc-archive-grid {
    grid-template-columns: 1fr;
  }

  .mmlc-post-faq {
    padding: 18px 16px;
  }

  .mmlc-post-faq h2 {
    font-family: var(--font-body);
    font-size: 1.2rem !important;
    font-weight: 800;
  }
}

/* ============================================================
 * v1.2.2 — Blog single layout v2:
 *   • Full-width shell (1320px) so the article gets more space.
 *   • Two-column: wide article on the LEFT, sticky aside on the
 *     RIGHT containing TOC + Enquiry form.
 *   • Brand-new .mmlc-post-form styles, isolated from any legacy
 *     .contact-form rules so inputs stay visible on the dark
 *     green panel.
 *   • Mobile-only collapsible TOC sits above the article body.
 *   • Bottom inline CTA removed (form lives once, in the sidebar).
 * ============================================================ */

/* ── Shell ─────────────────────────────────────────────────── */
.mmlc-post-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px var(--gutter) 0;
  align-items: start;
}

/* Override v1.2.0 sidebar rules — we use a different structure now */
.mmlc-post-side { display: none; } /* obsolete container retired */

.mmlc-post-body {
  min-width: 0;
  max-width: none;
}

/* Wider, more readable measure inside the article */
.mmlc-post-content {
  max-width: 760px;
}

/* ── Mobile-only TOC (sits above the article body) ─────────── */
.mmlc-post-toc-mobile {
  display: none;
  margin: 0 0 24px;
  padding: 0;
  background: #f6f9f3;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  overflow: hidden;
}

.mmlc-post-toc-mobile summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.mmlc-post-toc-mobile summary::-webkit-details-marker { display: none; }

.mmlc-post-toc-mobile summary svg {
  width: 16px;
  height: 16px;
  color: var(--gold, #B88732);
}

.mmlc-post-toc-mobile__chev {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #073629;
  border-bottom: 2px solid #073629;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mmlc-post-toc-mobile[open] .mmlc-post-toc-mobile__chev {
  transform: rotate(-135deg);
}

.mmlc-post-toc-mobile ol {
  margin: 0;
  padding: 4px 18px 16px;
  list-style: none;
  border-top: 1px solid #e0e5dd;
}

.mmlc-post-toc-mobile li {
  margin: 0;
}

.mmlc-post-toc-mobile a {
  display: block;
  padding: 6px 0;
  color: #2c3640;
  font-size: 0.92rem;
  text-decoration: none;
}

.mmlc-post-toc-mobile a:hover,
.mmlc-post-toc-mobile a.is-active {
  color: var(--gold, #B88732);
  font-weight: 600;
}

.mmlc-post-toc-mobile .mmlc-post-toc__h3 a {
  padding-left: 14px;
  font-size: 0.86rem;
}

/* ── Sticky right sidebar (TOC + form) ─────────────────────── */
.mmlc-post-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.mmlc-post-sidebar__heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mmlc-post-sidebar__heading svg {
  width: 14px;
  height: 14px;
}

/* TOC styling */
.mmlc-post-sidebar__toc {
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 14px;
  max-height: 360px;
  overflow-y: auto;
}

.mmlc-post-sidebar__toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid #ebefe8;
}

.mmlc-post-sidebar__toc a {
  display: block;
  padding: 5px 0 5px 12px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  color: #55616d;
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mmlc-post-sidebar__toc a:hover { color: #073629; }

.mmlc-post-sidebar__toc a.is-active {
  color: #073629;
  border-left-color: var(--gold, #B88732);
  font-weight: 600;
}

.mmlc-post-sidebar__toc .mmlc-post-toc__h3 a {
  padding-left: 24px;
  font-size: 0.82rem;
}

/* Slim, branded scrollbar inside the TOC card */
.mmlc-post-sidebar__toc::-webkit-scrollbar       { width: 5px; }
.mmlc-post-sidebar__toc::-webkit-scrollbar-thumb { background: rgba(7, 54, 41, 0.25); border-radius: 999px; }

/* ── Sidebar form — isolated styles, visible on dark green ── */
.mmlc-post-form {
  display: grid;
  gap: 12px;
  padding: 22px 22px 22px;
  color: #ffffff;
  background:
    radial-gradient(420px 220px at 100% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #073629 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(7, 54, 41, 0.24);
}

.mmlc-post-form__hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

.mmlc-post-form__head {
  margin-bottom: 4px;
}

.mmlc-post-form__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  color: var(--gold-2, #E2C16A);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.14);
  border: 1px solid rgba(226, 193, 106, 0.35);
  border-radius: 999px;
}

.mmlc-post-form__head h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 480;
  line-height: 1.18;
}

.mmlc-post-form__head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mmlc-post-form__field {
  display: grid;
  gap: 5px;
}

.mmlc-post-form__label {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mmlc-post-form__opt {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mmlc-post-form input[type="text"],
.mmlc-post-form input[type="tel"],
.mmlc-post-form input[type="email"],
.mmlc-post-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.4;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.mmlc-post-form input::placeholder,
.mmlc-post-form textarea::placeholder {
  color: rgba(247, 250, 246, 0.65);
  opacity: 1;
}

.mmlc-post-form input:hover,
.mmlc-post-form textarea:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.mmlc-post-form input:focus,
.mmlc-post-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-2, #E2C16A);
  box-shadow: 0 0 0 3px rgba(226, 193, 106, 0.22);
}

/* Browser autofill — keep readable on dark green */
.mmlc-post-form input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px rgba(7, 54, 41, 0.95) inset;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
}

.mmlc-post-form textarea {
  min-height: 92px;
  resize: vertical;
}

.mmlc-post-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  margin-top: 2px;
  color: #1d1308;
  background: linear-gradient(90deg, #c7933f, #e1bc6a);
  border: 1px solid rgba(236, 199, 124, 0.95);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mmlc-post-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(199, 147, 63, 0.32);
}

.mmlc-post-form__submit svg {
  width: 14px;
  height: 14px;
}

.mmlc-post-form__secure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 6px 10px;
  color: rgba(247, 250, 246, 0.82);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.mmlc-post-form__secure svg {
  width: 12px;
  height: 12px;
  color: var(--gold-2, #E2C16A);
}

.mmlc-post-form__secure strong {
  color: var(--gold-2, #E2C16A);
}

.mmlc-post-form__status {
  margin: 0;
  color: rgba(247, 250, 246, 0.86);
  font-size: 0.84rem;
}

/* Alt contact strip under the form */
.mmlc-post-sidebar__alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mmlc-post-sidebar__alt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  color: #073629;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mmlc-post-sidebar__alt a:hover {
  background: #f6f9f3;
  border-color: rgba(184, 135, 50, 0.55);
}

.mmlc-post-sidebar__alt svg {
  width: 16px;
  height: 16px;
  color: #1F6F5B;
}

/* ── Share row (inside article) ────────────────────────────── */
.mmlc-post-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2.2em 0 0;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 12px;
}

.mmlc-post-share-row__label {
  color: var(--gold, #B88732);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mmlc-post-share-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Old v1.2.0 inline CTA — hide if any stale markup is still cached.
   The form now lives in the sidebar only. */
.mmlc-post-cta { display: none !important; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mmlc-post-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
  }

  .mmlc-post-sidebar__toc {
    max-height: 320px;
  }
}

@media (max-width: 980px) {
  .mmlc-post-shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 36px;
  }

  .mmlc-post-sidebar {
    position: static;
    margin-top: 32px;
  }

  .mmlc-post-sidebar__toc {
    display: none; /* mobile uses the collapsible TOC at the top of the article */
  }

  .mmlc-post-toc-mobile {
    display: block;
  }

  .mmlc-post-content {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .mmlc-post-shell {
    padding: 28px 16px 0;
  }

  .mmlc-post-form {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .mmlc-post-form__head h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
  }

  .mmlc-post-share-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
 * v1.3.0 — blog hero full-bleed + share-icon brand hovers
 * + thank-you panel after form submit + footer back-to-top button.
 * ============================================================ */

/* ── (1) Blog post hero — full-bleed across the viewport ──── */
.mmlc-post-hero {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.mmlc-post-hero__inner {
  padding: 0 var(--container-pad);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .mmlc-post-hero {
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .mmlc-post-hero__inner {
    padding: 0 18px;
  }
}

/* ── (2) Share-icon brand hovers ───────────────────────────── */
.mmlc-post-share__btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.mmlc-post-share__btn--whatsapp:hover  { color: #25D366; border-color: #25D366; background: rgba(37, 211, 102, 0.08); }
.mmlc-post-share__btn--facebook:hover  { color: #1877F2; border-color: #1877F2; background: rgba(24, 119, 242, 0.08); }
.mmlc-post-share__btn--twitter:hover   { color: #0F1419; border-color: #0F1419; background: #f6f6f6; }
.mmlc-post-share__btn--linkedin:hover  { color: #0A66C2; border-color: #0A66C2; background: rgba(10, 102, 194, 0.08); }
.mmlc-post-share__btn--email:hover     { color: #073629; border-color: #073629; background: rgba(7, 54, 41, 0.08); }
.mmlc-post-share__btn--copy:hover      { color: var(--gold, #B88732); border-color: var(--gold, #B88732); background: rgba(184, 135, 50, 0.08); }
.mmlc-post-share__btn--copy.is-copied  { color: #ffffff; background: #1F6F5B; border-color: #1F6F5B; }

/* Brand fills for the solid-style icons (Facebook/X/LinkedIn) */
.mmlc-post-share__btn--facebook svg,
.mmlc-post-share__btn--twitter svg,
.mmlc-post-share__btn--linkedin svg {
  fill: currentColor;
}

/* ── (3) Thank-you panel — replaces the form on success ───── */
.mmlc-form-thanks {
  display: grid;
  gap: 12px;
  padding: 32px 28px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(420px 220px at 100% -10%, rgba(226, 193, 106, 0.24), transparent 60%),
    linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #073629 100%);
  border: 1px solid rgba(226, 193, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(7, 54, 41, 0.24);
  animation: mmlc-thanks-in 0.4s ease both;
}

@keyframes mmlc-thanks-in {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mmlc-form-thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 4px;
  color: #073629;
  background: var(--gold-2, #E2C16A);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(226, 193, 106, 0.35);
}

.mmlc-form-thanks__icon svg {
  width: 36px;
  height: 36px;
}

.mmlc-form-thanks h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 460;
  line-height: 1.18;
}

.mmlc-form-thanks p {
  margin: 0 auto;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mmlc-form-thanks__actions {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.mmlc-form-thanks__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
}

.mmlc-form-thanks__primary {
  color: #1d1308;
  background: linear-gradient(90deg, #c7933f, #e1bc6a);
  border: 1px solid rgba(236, 199, 124, 0.95);
}

.mmlc-form-thanks__secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mmlc-form-thanks__actions svg {
  width: 16px;
  height: 16px;
}

/* The thank-you panel is rendered for ANY form submission, so it
   needs to look right inside light backgrounds too (services hero,
   contact page, etc). Detect a light parent and invert. */
.mmlc-contact-hero .mmlc-form-thanks,
.mmlc-contact-main .mmlc-form-thanks,
.mmlc-home-hero .mmlc-form-thanks,
.mmlc-svc-landing-hero .mmlc-form-thanks {
  background: linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #073629 100%);
}

/* ── (4) Footer back-to-top button ─────────────────────────── */
.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.footer-back-to-top:hover {
  color: var(--gold-2, #E2C16A);
  background: rgba(226, 193, 106, 0.14);
  border-color: rgba(226, 193, 106, 0.4);
}

.footer-back-to-top svg {
  width: 14px;
  height: 14px;
}

/* On lighter footer backgrounds the rgba(255,...) tones may not be
   visible — these defaults assume the existing dark green footer.
   The .footer-bottom-links a styling stays applied to other links. */

/* ============================================================
 * v1.3.1 — Blog post hero alignment
 *   The hero background stays full-bleed (100vw), but its inner
 *   content (breadcrumb, title, excerpt, meta row) now matches
 *   the body shell width below it so they sit on the same grid.
 *   Body shell uses max-width 1320px with padding via --gutter,
 *   so the hero inner uses the same recipe.
 * ============================================================ */

.mmlc-post-hero__inner {
  max-width: 1320px !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .mmlc-post-hero__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============================================================
 * v1.4.2 — Documents page inline enquiry block
 * Two-column: left = copy + selling points + alt contact pills,
 * right = same dark-green form pattern as the blog single sidebar.
 * Replaces the previous link-only CTA.
 * ============================================================ */

.mmlc-docs-enquire {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 40px 44px;
  background: #ffffff;
  border: 1px solid #d8dfd6;
  border-radius: 20px;
  box-shadow: 0 26px 56px rgba(7, 54, 41, 0.1);
}

.mmlc-docs-enquire__tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: #073629;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(226, 193, 106, 0.18);
  border: 1px solid rgba(184, 135, 50, 0.4);
  border-radius: 999px;
}

.mmlc-docs-enquire__copy h2 {
  margin: 0;
  color: #073629;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 420;
  line-height: 1.1;
}

.mmlc-docs-enquire__copy > p {
  margin: 14px 0 18px;
  color: #4f5963;
  font-size: 1rem;
  line-height: 1.65;
}

.mmlc-docs-enquire__points {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.mmlc-docs-enquire__points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  color: #2c3640;
  font-size: 0.94rem;
  line-height: 1.5;
}

.mmlc-docs-enquire__points svg {
  width: 18px;
  height: 18px;
  color: #1F6F5B;
}

.mmlc-docs-enquire__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.mmlc-docs-enquire__alt a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #073629;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  background: #f6f9f3;
  border: 1px solid #e0e5dd;
  border-radius: 999px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mmlc-docs-enquire__alt a:hover {
  border-color: rgba(184, 135, 50, 0.55);
  background: #fbfdf8;
}

.mmlc-docs-enquire__alt svg {
  width: 16px;
  height: 16px;
  color: #1F6F5B;
}

/* Form pulls the same dark-green panel + visible-input rules
   we already shipped for the blog single sidebar. */
.mmlc-docs-enquire__form {
  margin: 0;
}

@media (max-width: 980px) {
  .mmlc-docs-enquire {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
}

@media (max-width: 720px) {
  .mmlc-docs-enquire {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .mmlc-docs-enquire__copy h2 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
  }
}

/* ============================================================
 * v1.4.4 — Blog form isolation
 *
 * The blog sidebar form has both .contact-form (for legacy JS
 * targeting) AND .mmlc-post-form. The legacy .contact-form CSS
 * (white panel, light inputs, dark text) was overriding the
 * dark-green sidebar design. Higher-specificity overrides below
 * restore the intended look without removing the .contact-form
 * class (the universal JS handler still finds it).
 * ============================================================ */

.contact-form.mmlc-post-form,
form.mmlc-post-form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  padding: 22px 22px !important;
  color: #ffffff !important;
  background:
    radial-gradient(420px 220px at 100% -10%, rgba(226, 193, 106, 0.22), transparent 60%),
    linear-gradient(150deg, #073629 0%, #0a4c3a 70%, #073629 100%) !important;
  border: 1px solid rgba(226, 193, 106, 0.32) !important;
  border-radius: 16px !important;
  box-shadow: 0 22px 50px rgba(7, 54, 41, 0.24) !important;
}

.contact-form.mmlc-post-form label,
form.mmlc-post-form label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  display: grid;
  gap: 5px;
}

.contact-form.mmlc-post-form input[type="text"],
.contact-form.mmlc-post-form input[type="tel"],
.contact-form.mmlc-post-form input[type="email"],
.contact-form.mmlc-post-form textarea,
form.mmlc-post-form input[type="text"],
form.mmlc-post-form input[type="tel"],
form.mmlc-post-form input[type="email"],
form.mmlc-post-form textarea {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  padding: 11px 13px !important;
  border-radius: 10px !important;
  font: inherit !important;
  font-size: 0.94rem !important;
  line-height: 1.4 !important;
}

.contact-form.mmlc-post-form input::placeholder,
.contact-form.mmlc-post-form textarea::placeholder,
form.mmlc-post-form input::placeholder,
form.mmlc-post-form textarea::placeholder {
  color: rgba(247, 250, 246, 0.65) !important;
}

.contact-form.mmlc-post-form input:focus,
.contact-form.mmlc-post-form textarea:focus,
form.mmlc-post-form input:focus,
form.mmlc-post-form textarea:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--gold-2, #E2C16A) !important;
  box-shadow: 0 0 0 3px rgba(226, 193, 106, 0.22) !important;
  outline: none !important;
}

/* Autofill — keep readable on dark green */
.contact-form.mmlc-post-form input:-webkit-autofill,
form.mmlc-post-form input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(7, 54, 41, 0.95) inset !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.contact-form.mmlc-post-form .form-status,
form.mmlc-post-form .form-status,
.contact-form.mmlc-post-form .mmlc-post-form__status {
  color: rgba(247, 250, 246, 0.86);
  font-size: 0.84rem;
  margin: 0;
}

/* Hide the legacy contact-form 2-column grid for our form */
.contact-form.mmlc-post-form > * {
  grid-column: auto !important;
}
