/*
Theme Name: Mintu Jha — D2C Growth
Theme URI: https://mintujha.com/
Author: Apurba Nath
Author URI: https://apurbanath.vercel.app/
Description: A conversion-focused, editorial one-page WordPress theme for D2C growth partners, fractional CMOs and independent consultants. The entire homepage is driven by one ACF field group on a dedicated page template — eleven tabs, eleven repeaters — with site-wide settings on an ACF Options Page. Field groups ship as local JSON and load with no import step. Includes a built-in AJAX enquiry form, one-click starter content and a full set of blog templates. Requires ACF Pro.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mintujha
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, portfolio, block-styles, wide-blocks, rtl-language-support, editor-style, footer-widgets, sticky-post

Mintu Jha — D2C Growth is distributed under the terms of the GNU GPL v2 or later.
*/

/* =========================================================================
   TABLE OF CONTENTS
   01. Design tokens (CSS custom properties)
   02. Reset & base
   03. Typography helpers
   04. Buttons & shared UI
   05. Header / navigation / mobile drawer
   06. Hero
   07. Logo marquee
   08. Featured testimonial
   09. Manifesto + dark card (approach)
   10. Growth traps (dark band)
   11. Principles
   12. Case studies
   13. Testimonials grid
   14. About
   15. Fit
   16. Instagram
   17. Final CTA + enquiry form
   18. Footer
   19. Floating elements
   20. Blog, archive, single, comments, sidebar
   21. WordPress core & block editor classes
   22. Animation / reveal
   23. Responsive
   24. Print & reduced motion
   ========================================================================= */
/* =========================================================================
   01. DESIGN TOKENS
   Colour tokens are overridable from Theme settings → Colours (ACF).
   inc/dynamic-css.php prints an inline :root block after this file.
   ========================================================================= */
:root {
  /* Surfaces */
  --mj-lilac: #EFEAE1;
  --mj-lilac-2: #D8D6CC;
  --mj-lilac-chip: #EFEDE5;
  --mj-cream: #F7F2EA;
  --mj-white: #FFFFFF;
  --mj-dark: #211D26;

  /* Ink */
  --mj-plum: #2A2622;
  --mj-plum-2: #1F1C19;
  --mj-plum-soft: #5C564E;
  --mj-muted: #71695E;

  /* Accents */
  --mj-orange: #E2571C;
  --mj-orange-d: #C44912;
  --mj-violet: #1F6E60;
  --mj-violet-l: #4FA294;
  --mj-pink: #C98A55;
  --mj-grad: linear-gradient(105deg, #E2571C 0%, #E8628A 100%);

  /* Lines */
  --mj-line: rgba(42, 38, 34, .13);
  --mj-line-soft: rgba(42, 38, 34, .08);

  /* Type */
  --mj-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --mj-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mj-base: 17px;

  /* Elevation */
  --mj-sh: 0 18px 50px -24px rgba(42, 38, 34, .30);
  --mj-sh-sm: 0 8px 24px -14px rgba(42, 38, 34, .24);

  /* Metrics */
  --mj-wrap: 1180px;
  --mj-radius: 24px;
  --mj-gutter: 30px;
  --mj-section-y: 96px;
}

/* =========================================================================
   02. RESET & BASE
   ========================================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--mj-lilac);
  color: var(--mj-plum);
  font-family: var(--mj-sans);
  font-size: var(--mj-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.mj-nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }

img, svg, video, canvas, iframe { max-width: 100%; }
img { height: auto; display: block; border: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--mj-violet); }

/*
 * WordPress 6.x global styles underline every link by default via
 * `:root :where(a:where(:not(.wp-element-button)))`. The design underlines
 * links only inside prose, so this reset matches that specificity and the
 * prose rules further down opt back in.
 */
:root a:where(:not(.wp-element-button)) { text-decoration: none; }

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

/* Focus visibility — accessibility requirement */
:focus-visible {
  outline: 3px solid var(--mj-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 14px 22px;
  background: var(--mj-plum);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  clip: auto !important;
  clip-path: none;
  color: var(--mj-plum);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 6px;
  width: auto;
  z-index: 100000;
  border-radius: 8px;
  box-shadow: var(--mj-sh);
}

.wrap {
  max-width: var(--mj-wrap);
  margin: 0 auto;
  padding: 0 var(--mj-gutter);
  position: relative;
  z-index: 2;
}

.mj-section { position: relative; padding: var(--mj-section-y) 0; }
.bg-cream { background: var(--mj-cream); }
.bg-lilac { background: var(--mj-lilac); }
.bg-white { background: var(--mj-white); }

/* =========================================================================
   03. TYPOGRAPHY
   ========================================================================= */
h1, h2, h3 {
  font-family: var(--mj-serif);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--mj-plum);
  line-height: 1.04;
}
h4, h5, h6 { font-family: var(--mj-serif); font-weight: 600; color: var(--mj-plum); line-height: 1.2; }

.hl { color: var(--mj-violet); }
.hl-o { color: var(--mj-orange); }

.eyebrow {
  font-family: var(--mj-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mj-violet);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--mj-violet);
  border-radius: 2px;
  display: inline-block;
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }

.sec-center {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 16px;
}
.sec-center h2 { font-size: clamp(32px, 4.7vw, 58px); }
.sec-center .sub { margin-top: 16px; color: var(--mj-plum-soft); font-size: 18px; }

/* Decorative helpers */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================================
   04. BUTTONS
   ========================================================================= */
.btn {
  font-family: var(--mj-sans);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  border-radius: 999px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  border: 1.6px solid transparent;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-o { background: var(--mj-orange); color: #fff; box-shadow: var(--mj-sh-sm); }
.btn-o:hover,
.btn-o:focus-visible { background: var(--mj-orange-d); color: #fff; transform: translateY(-2px); }

.btn-out { background: transparent; border-color: var(--mj-plum); color: var(--mj-plum); }
.btn-out:hover,
.btn-out:focus-visible { background: var(--mj-plum); color: #fff; }

.btn-plum { background: var(--mj-plum); color: #fff; }
.btn-plum:hover { background: var(--mj-plum-2); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; border-color: var(--mj-line); color: var(--mj-plum); }
.btn-ghost:hover { border-color: var(--mj-plum); }

/* =========================================================================
   05. HEADER / NAVIGATION
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--mj-gutter);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 242, 234, .85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--mj-line-soft);
}
.admin-bar .site-header { top: 32px; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mj-serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--mj-plum);
  flex: none;
}
.brand:hover { color: var(--mj-plum); }
.brand img { max-height: 46px; width: auto; }
.brand .brand-tag {
  display: block;
  font-family: var(--mj-sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mj-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 15px;
  color: var(--mj-plum);
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a { position: relative; display: inline-block; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  /*background: var(--mj-violet);*/
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .mj-active > a::after { width: 100%; }
.nav-links a:hover { color: var(--mj-violet); }

/* Dropdown submenus */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 16px;
  box-shadow: var(--mj-sh);
  padding: 10px;
  list-style: none;
  margin: 12px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 30;
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-links .sub-menu li { width: 100%; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  white-space: nowrap;
}
.nav-links .sub-menu a::after { display: none; }
.nav-links .sub-menu a:hover { background: var(--mj-lilac); }

.nav-right { display: flex; align-items: center; gap: 16px; flex: none; }
.nav-right .btn { padding: 13px 24px; font-size: 14.5px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--mj-line);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .2s ease;
}
.nav-toggle:hover { background: #fff; }
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--mj-plum);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.mj-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mj-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.mj-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mj-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--mj-cream);
  padding: 104px var(--mj-gutter) 40px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: none;
}
.mj-drawer.is-open { transform: translateX(0); }
.mj-drawer ul { list-style: none; margin: 0; padding: 0; }
.mj-drawer > ul > li { border-bottom: 1px solid var(--mj-line-soft); }
.mj-drawer a {
  display: block;
  padding: 18px 2px;
  font-family: var(--mj-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--mj-plum);
}
.mj-drawer .sub-menu a {
  font-family: var(--mj-sans);
  font-size: 16px;
  padding: 11px 2px 11px 20px;
  color: var(--mj-plum-soft);
}
.mj-drawer .mj-drawer-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
/* The drawer styles every <a> as a large serif menu item — buttons opt out. */
.mj-drawer .mj-drawer-cta .btn,
.mj-drawer a.btn {
  width: 100%;
  font-family: var(--mj-sans);
  font-size: 15.5px;
  font-weight: 600;
  padding: 16px 30px;
  color: #fff;
}
.mj-drawer a.btn-out { color: var(--mj-plum); }
.mj-drawer a.btn-out:hover { color: #fff; }
.mj-drawer .mj-drawer-social {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mj-plum-soft);
}
.mj-drawer .mj-drawer-social a { padding: 0; font-family: var(--mj-sans); font-size: 14px; }

/* Scroll progress bar */
#mj-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--mj-grad);
  z-index: 300;
  transition: width .12s linear;
}
.admin-bar #mj-prog { top: 32px; }

/* =========================================================================
   06. HERO
   ========================================================================= */
.mj-hero {
  padding: 170px 0 70px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(var(--mj-line) 1.1px, transparent 1.1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 42%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 42%, #000 35%, transparent 78%);
  opacity: .7;
}
.mj-hero .blob.b1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #3a9c8c, #2f8f80);
  left: -150px; top: -50px; opacity: .34;
  animation: mj-floaty 14s ease-in-out infinite;
}
.mj-hero .blob.b2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d99a5e, #2f8f80);
  right: -120px; top: -30px; opacity: .28;
  animation: mj-floaty2 17s ease-in-out infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 22px;
  padding: 8px 17px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mj-plum-soft);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--mj-line);
  box-shadow: var(--mj-sh-sm);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mj-orange); flex: none; }

.mj-hero h1 {
  font-size: clamp(44px, 7vw, 90px);
  max-width: 15ch;
  margin: 0 auto;
}
.mj-hero h1 .hl {
  background: var(--mj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 54ch;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--mj-plum-soft);
  font-weight: 400;
}
.hero-btns {
  margin-top: 38px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 22px;
  box-shadow: var(--mj-sh-sm);
  max-width: 760px;
  margin: 36px auto 0;
  overflow: hidden;
}
.hero-stats .hs {
  flex: 1 1 0;
  min-width: 165px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--mj-line-soft);
}
.hero-stats .hs:last-child { border-right: none; }
.hero-stats .f {
  font-family: var(--mj-serif);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  background: var(--mj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-stats .f .u { -webkit-text-fill-color: var(--mj-orange); color: var(--mj-orange); }
.hero-stats .l {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--mj-plum-soft);
  font-weight: 500;
  line-height: 1.42;
}

/* =========================================================================
   07. LOGO MARQUEE
   ========================================================================= */
.logos-wrap { margin-top: 60px; border-top: 1px solid var(--mj-line-soft); padding-top: 34px; }
.logos-lbl {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mj-muted);
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.m-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: mj-marq var(--mj-marquee-speed, 36s) linear infinite;
}
.marquee:hover .m-track,
.marquee:focus-within .m-track { animation-play-state: paused; }
@keyframes mj-marq { to { transform: translateX(-50%); } }

.m-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 16px;
  padding: 0 32px;
  height: 74px;
  min-width: 150px;
  box-shadow: var(--mj-sh-sm);
}
.m-item .lg {
  height: 34px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: .9;
  transition: opacity .25s ease;
}
.m-item:hover .lg { opacity: 1; }
.m-item .nm { font-family: var(--mj-sans); font-weight: 600; font-size: 15.5px; color: var(--mj-plum); opacity: .88; }

/* Static grid fallback when marquee is disabled */
.logo-box {
  margin-top: 32px;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 26px;
  padding: 34px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 52px;
  box-shadow: var(--mj-sh-sm);
}
.logo-box .lg { height: 40px; max-width: 165px; width: auto; object-fit: contain; opacity: .92; transition: .25s; }
.logo-box .lg:hover { opacity: 1; transform: translateY(-2px); }

/* =========================================================================
   08. FEATURED TESTIMONIAL
   ========================================================================= */
.feat-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 32px;
  padding: 46px 52px;
  max-width: 1010px;
  margin: 0 auto;
  box-shadow: var(--mj-sh);
}
.feat-photo { position: relative; flex: none; }
.feat-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(15px, 15px);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--mj-violet), var(--mj-orange));
  opacity: .18;
}
.feat-photo img {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 250px;
  border-radius: 26px;
  object-fit: cover;
  display: block;
}
.feat-body .eyebrow { margin-bottom: 6px; }
.feat-body h2 { font-size: clamp(25px, 2.9vw, 36px); line-height: 1.12; margin: 6px 0 0; max-width: 18ch; }
.feat-body .fq { margin-top: 18px; color: var(--mj-plum-soft); font-size: 15.5px; line-height: 1.72; }
.feat-body .fq p + p { margin-top: 12px; }
.feat-body .fwho { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--mj-line-soft); }
.feat-body .fnm { font-family: var(--mj-serif); font-weight: 600; font-size: 17px; }
.feat-body .fnm a:hover { color: var(--mj-violet); }
.feat-body .frl { font-size: 13.5px; color: var(--mj-plum-soft); margin-top: 2px; }

/* =========================================================================
   09. MANIFESTO + DARK CARD
   ========================================================================= */
.manifesto {
  font-family: var(--mj-serif);
  font-weight: 500;
  text-align: center;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.08;
  max-width: 18ch;
  margin: 0 auto;
  color: var(--mj-muted);
}
.manifesto b { color: var(--mj-plum); font-weight: 600; }
.manifesto .v { color: var(--mj-violet); font-weight: 600; }

.dark-card {
  margin-top: 64px;
  background: var(--mj-plum);
  color: #fff;
  border-radius: 32px;
  padding: 54px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--mj-sh);
  border: 1px solid rgba(255, 255, 255, .10);
}
.dark-card h3 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); max-width: 16ch; position: relative; z-index: 2; }
.dark-card p { margin-top: 18px; color: rgba(255, 255, 255, .72); max-width: 52ch; font-size: 16.5px; position: relative; z-index: 2; }
.dark-card .d-btns { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.dark-card .btn-out { border-color: rgba(255, 255, 255, .5); color: #fff; }
.dark-card .btn-out:hover { background: #fff; color: var(--mj-plum); }
.arrows { position: absolute; right: -20px; bottom: -10px; width: 340px; height: 300px; opacity: .5; z-index: 1; }
.arrows svg { width: 100%; height: 100%; }

/* =========================================================================
   10. GROWTH TRAPS (dark band)
   ========================================================================= */
.bg-dark { background: var(--mj-dark); overflow: hidden; position: relative; }
.bg-dark::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  top: -230px;
  right: -170px;
  background: radial-gradient(circle, rgba(226, 87, 28, .10), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.bg-dark .sec-center h2 { color: #fff; }
.bg-dark .sec-center .sub { color: rgba(255, 255, 255, .6); }
.bg-dark .eyebrow { color: var(--mj-violet-l); }
.bg-dark .eyebrow::before { background: var(--mj-violet-l); }

.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.prob-card {
  background: var(--mj-white);
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--mj-sh-sm);
}
.pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.pc-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(226, 87, 28, .10);
  color: var(--mj-orange);
  flex: none;
}
.pc-ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pc-n { font-family: var(--mj-serif); font-weight: 600; font-size: 17px; color: var(--mj-muted); opacity: .55; }
.prob-card h3 { font-size: 19px; margin: 0 0 13px; line-height: 1.2; color: var(--mj-plum); }
.pc-fix {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--mj-plum-soft);
  line-height: 1.45;
  padding-top: 13px;
  border-top: 1px solid var(--mj-line-soft);
}
.pc-arw { color: var(--mj-violet); font-weight: 700; flex: none; }

.prob-card.pcta {
  background: var(--mj-violet);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--mj-sh);
}
.prob-card.pcta h3 { font-size: 25px; margin-top: 0; color: #fff; }
.prob-card.pcta .pdesc { color: rgba(255, 255, 255, .9); font-size: 14.5px; }
.prob-card.pcta .btn { align-self: flex-start; margin-top: 20px; }

/* =========================================================================
   11. PRINCIPLES
   ========================================================================= */
.princ {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px auto 0;
  max-width: 840px;
}
.pr {
  background: var(--mj-white);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: var(--mj-sh-sm);
  border: 1px solid var(--mj-line-soft);
}
.pr .chk {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--mj-lilac);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pr .chk svg { width: 20px; height: 20px; }
.pr .k { font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mj-violet); margin-bottom: 8px; }
.pr h3 { font-size: 22px; margin-bottom: 8px; line-height: 1.12; }
.pr p { font-size: 14.5px; color: var(--mj-plum-soft); line-height: 1.6; }

/* Shared circular tick */
.mj-tick circle { stroke: var(--mj-violet); }
.mj-tick path { stroke: var(--mj-violet); }

/* =========================================================================
   12. CASE STUDIES
   ========================================================================= */
.cases-rail { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 42px; }
.ccard {
  flex: 0 1 340px;
  max-width: 100%;
  background: var(--mj-white);
  border: 1.5px solid var(--mj-lilac-2);
  border-radius: 26px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  box-shadow: var(--mj-sh-sm);
}
.ccard:hover { border-color: var(--mj-violet-l); }
.ccard .cbrand { font-family: var(--mj-serif); font-weight: 600; font-size: 24px; margin-bottom: 22px; }
.ccard .cbrand a:hover { color: var(--mj-violet); }
.ccard .cfig {
  font-family: var(--mj-serif);
  font-weight: 600;
  font-size: 64px;
  line-height: .9;
  letter-spacing: -.02em;
  background: var(--mj-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ccard .cfig .u { font-size: 30px; -webkit-text-fill-color: var(--mj-orange); color: var(--mj-orange); }
.ccard .clbl { margin-top: 10px; font-weight: 600; font-size: 16px; color: var(--mj-plum); }
.ccard .csub { font-size: 13.5px; color: var(--mj-muted); font-weight: 500; margin-top: 3px; }
.ccard ul { list-style: none; margin-top: 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.ccard li { display: flex; gap: 11px; font-size: 14px; color: var(--mj-plum-soft); line-height: 1.45; }
.ccard li .chk { flex: 0 0 19px; margin-top: 1px; }
.ccard li .chk svg { width: 19px; height: 19px; }
.ccard .ctag {
  margin-top: 22px;
  align-self: flex-start;
  border: 1.4px solid var(--mj-lilac-2);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--mj-plum);
}
.cases-note { text-align: center; margin-top: 16px; font-size: 12.5px; color: var(--mj-muted); }
.cases-cta { text-align: center; margin-top: 30px; }

/* =========================================================================
   13. TESTIMONIALS GRID
   ========================================================================= */
.mj-voices { position: relative; overflow: hidden; }
.tbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(8px) grayscale(.15);
  opacity: .36;
  transform: scale(1.12);
}
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.tcard {
  display: flex;
  flex-direction: column;
  background: var(--mj-white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--mj-sh-sm);
  border: 1px solid var(--mj-line-soft);
}
.tcard .th { font-family: var(--mj-serif); font-weight: 600; font-size: 20px; line-height: 1.25; color: var(--mj-plum); margin-bottom: 14px; }
.tcard q { font-size: 15.5px; line-height: 1.7; color: var(--mj-plum-soft); font-weight: 400; quotes: none; }
.tcard .stars { color: var(--mj-orange); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.tcard .who {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--mj-line-soft);
  display: flex;
  align-items: center;
  gap: 15px;
}
.tcard .av {
  width: 76px; height: 76px;
  border-radius: 50%;
  flex: 0 0 76px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--mj-violet), var(--mj-violet-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mj-serif); font-weight: 600; color: #fff; font-size: 23px;
}
.tcard .av img { width: 100%; height: 100%; object-fit: cover; }
.tcard .nm { font-family: var(--mj-serif); font-weight: 600; font-size: 16.5px; }
.tcard .nm a:hover { color: var(--mj-violet); }
.tcard .rl { font-size: 13px; color: var(--mj-plum-soft); font-weight: 500; margin-top: 2px; }

.tcard.tmore {
  align-items: flex-start;
  justify-content: center;
  background: var(--mj-lilac-chip);
  border: 1px dashed var(--mj-lilac-2);
  box-shadow: none;
}
.tcard.tmore .tn2 { font-family: var(--mj-serif); font-weight: 600; font-size: 34px; color: var(--mj-plum); line-height: 1; }
.tcard.tmore p { margin-top: 8px; color: var(--mj-plum-soft); font-size: 15px; }
.tcard.tmore a {
  margin-top: 16px;
  color: var(--mj-violet);
  font-weight: 600;
  border-bottom: 2px solid rgba(31, 110, 96, .35);
  padding-bottom: 3px;
}

/* =========================================================================
   14. ABOUT
   ========================================================================= */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.ab-media { position: relative; }
.ab-card {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: linear-gradient(160deg, #e7ddf8, #f7eee6);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  border: 1px solid var(--mj-line-soft);
  box-shadow: var(--mj-sh);
}
.ab-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.ab-card .tag {
  position: relative; z-index: 2;
  margin-bottom: 22px;
  background: var(--mj-plum); color: #fff;
  font-weight: 600; font-size: 13px;
  border-radius: 999px; padding: 9px 20px;
}
.ab-card2 {
  position: absolute;
  right: -16px; bottom: -28px;
  width: 50%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--mj-white);
  box-shadow: var(--mj-sh);
  transform: rotate(2.5deg);
  z-index: 3;
}
.ab-card2 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-photo {
  display: block;
  width: 118px; height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid var(--mj-white);
  box-shadow: var(--mj-sh);
}
.ab-body h2 { font-size: clamp(30px, 4vw, 48px); }
.ab-body p { margin-top: 18px; color: var(--mj-plum-soft); font-size: 17px; line-height: 1.7; }
.ab-body p b { color: var(--mj-plum); font-weight: 600; }
.ab-body .ab-btns { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   15. FIT
   ========================================================================= */
.fit-card {
  background: var(--mj-cream);
  border: 2px solid var(--mj-violet-l);
  border-radius: 32px;
  padding: 54px;
  margin-top: 14px;
  position: relative;
  box-shadow: var(--mj-sh);
}
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.fit-col h3 {
  font-size: 13px;
  font-family: var(--mj-sans);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fit-col.yes h3 { color: var(--mj-violet); }
.fit-col.no h3 { color: var(--mj-muted); }
.fit-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fit-col li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.5; color: var(--mj-plum-soft); }
.fit-col.yes li { color: var(--mj-plum); }
.fit-col li .mk {
  flex: 0 0 22px; height: 22px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-top: 1px;
}
.fit-col.yes li .mk { background: var(--mj-violet); color: #fff; }
.fit-col.no li .mk { background: var(--mj-lilac-2); color: var(--mj-muted); }

/* =========================================================================
   16. INSTAGRAM
   ========================================================================= */
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; flex-wrap: wrap; margin-bottom: 42px; }
.ig-headl { max-width: 34ch; }
.ig-follow {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 15px; color: var(--mj-plum);
  padding: 9px 9px 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mj-line);
  box-shadow: var(--mj-sh-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.ig-follow:hover { transform: translateY(-2px); box-shadow: var(--mj-sh); color: var(--mj-plum); }
.ig-ico {
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(45deg, #feda75, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5);
  flex: none;
}
.ig-ico svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; }
.ig-foll-cta {
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(45deg, #fa7e1e, #d62976 55%, #962fbf);
}
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ig-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  background: linear-gradient(155deg, #feda75, #fa7e1e 28%, #d62976 60%, #962fbf 85%, #4f5bd5);
  box-shadow: var(--mj-sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ig-reel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-reel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 24, .05), rgba(20, 16, 24, .42));
  z-index: 1;
}
.ig-reel:hover { transform: translateY(-6px); box-shadow: var(--mj-sh); }
.ig-reel .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .3s ease;
  z-index: 2;
}
.ig-reel:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.ig-reel .play svg { width: 22px; height: 22px; margin-left: 3px; fill: #1A1620; }
.ig-reel .rlabel {
  position: relative; z-index: 2;
  color: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.35;
  padding: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.mj-ig-embed { margin-top: 10px; }

/* =========================================================================
   17. FINAL CTA + ENQUIRY FORM
   ========================================================================= */
.cta-card {
  background: var(--mj-plum);
  border-radius: 36px;
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--mj-sh);
  border: 1px solid rgba(255, 255, 255, .10);
}
.cta-card .blob {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #2f8f80, #2f8f80);
  left: -120px; bottom: -160px; opacity: .5;
}
.cta-card .blob.b2 {
  left: auto; right: -120px; top: -160px; bottom: auto;
  background: radial-gradient(circle, #d99a5e, #c98a55);
}
.cta-card h2 { color: #fff; font-size: clamp(34px, 5vw, 64px); max-width: 17ch; margin: 0 auto; position: relative; z-index: 2; }
.cta-card h2 .hl { color: var(--mj-violet-l); }
.cta-card p { position: relative; z-index: 2; color: rgba(255, 255, 255, .72); margin: 22px auto 0; max-width: 50ch; font-size: 18px; }
.cta-card .hero-btns { position: relative; z-index: 2; }
.cta-card .btn-out { border-color: rgba(255, 255, 255, .5); color: #fff; }
.cta-card .btn-out:hover { background: #fff; color: var(--mj-plum); }

/* Enquiry form */
.mj-form-wrap {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 38px auto 0;
  text-align: left;
}
.mj-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mj-field { display: flex; flex-direction: column; gap: 7px; }
.mj-field.is-full { grid-column: 1 / -1; }
.mj-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.mj-field input,
.mj-field select,
.mj-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: var(--mj-sans);
  transition: border-color .2s ease, background .2s ease;
}
.mj-field textarea { min-height: 118px; resize: vertical; }
.mj-field input::placeholder,
.mj-field textarea::placeholder { color: rgba(255, 255, 255, .4); }
.mj-field input:focus,
.mj-field select:focus,
.mj-field textarea:focus {
  outline: none;
  border-color: var(--mj-orange);
  background: rgba(255, 255, 255, .12);
}
.mj-field select option { color: var(--mj-plum); }
.mj-form .mj-submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.mj-form .mj-consent { font-size: 12.5px; color: rgba(255, 255, 255, .5); line-height: 1.5; }
.mj-hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

.mj-form-msg {
  grid-column: 1 / -1;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  display: none;
}
.mj-form-msg.is-visible { display: block; }
.mj-form-msg.is-ok { background: rgba(79, 162, 148, .18); border: 1px solid rgba(79, 162, 148, .5); color: #d6f2ec; }
.mj-form-msg.is-err { background: rgba(226, 87, 28, .15); border: 1px solid rgba(226, 87, 28, .5); color: #ffd9c8; }
.btn.is-loading { opacity: .65; pointer-events: none; }
.btn.is-loading::after {
  content: "";
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mj-spin .7s linear infinite;
}
@keyframes mj-spin { to { transform: rotate(360deg); } }

/* Form on a light background (page template / shortcode) */
.mj-form-wrap.is-light .mj-field label { color: var(--mj-plum-soft); }
.mj-form-wrap.is-light .mj-field input,
.mj-form-wrap.is-light .mj-field select,
.mj-form-wrap.is-light .mj-field textarea {
  background: var(--mj-white);
  border-color: var(--mj-line);
  color: var(--mj-plum);
}
.mj-form-wrap.is-light .mj-field input::placeholder,
.mj-form-wrap.is-light .mj-field textarea::placeholder { color: var(--mj-muted); }
.mj-form-wrap.is-light .mj-consent { color: var(--mj-muted); }
.mj-form-wrap.is-light .mj-form-msg.is-ok { background: rgba(31, 110, 96, .10); border-color: rgba(31, 110, 96, .35); color: #17544a; }
.mj-form-wrap.is-light .mj-form-msg.is-err { background: rgba(226, 87, 28, .10); border-color: rgba(226, 87, 28, .35); color: #9c3a0f; }

/* =========================================================================
   18. FOOTER
   ========================================================================= */
.site-footer { background: var(--mj-cream); padding: 46px 0; border-top: 1px solid var(--mj-line-soft); }
.mj-foot-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 42px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--mj-line-soft);
}
.mj-foot-widgets .widget-title {
  font-family: var(--mj-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mj-violet);
  margin-bottom: 16px;
}
.mj-foot-widgets ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mj-foot-widgets a { font-size: 14.5px; color: var(--mj-plum-soft); }
.mj-foot-widgets a:hover { color: var(--mj-violet); }

.foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; }
.foot .brand { font-size: 21px; }
.foot-links { display: flex; gap: 26px; font-weight: 500; font-size: 14.5px; color: var(--mj-plum-soft); list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.foot-links a:hover { color: var(--mj-violet); }
.foot-copy { font-size: 13px; color: var(--mj-muted); }

/* =========================================================================
   19. FLOATING ELEMENTS
   ========================================================================= */
.float-pill {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 70;
  background: var(--mj-plum);
  color: #fff;
  border-radius: 999px;
  padding: 13px 18px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--mj-sh);
}
.float-pill b { color: #fff; }
.float-pill .x {
  cursor: pointer;
  opacity: .6;
  font-size: 16px;
  line-height: 1;
  background: none;
  border: 0;
  color: #fff;
  padding: 2px 4px;
}
.float-pill .x:hover { opacity: 1; }
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 70; box-shadow: var(--mj-sh); }

/* =========================================================================
   20. BLOG / ARCHIVE / SINGLE / COMMENTS / SIDEBAR
   ========================================================================= */
.mj-page-hero {
  padding: 168px 0 62px;
  background: var(--mj-cream);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mj-line-soft);
}
.mj-page-hero .hero-grid { opacity: .5; }
.mj-page-hero .mj-page-hero-inner { max-width: 760px; }
.mj-page-hero.is-centered .mj-page-hero-inner { margin: 0 auto; text-align: center; }
.mj-page-hero.is-centered .eyebrow { justify-content: center; }
.mj-page-hero h1 { font-size: clamp(34px, 5.2vw, 62px); }
.mj-page-hero .mj-page-sub { margin-top: 18px; color: var(--mj-plum-soft); font-size: 18px; max-width: 60ch; }
.mj-page-hero.is-centered .mj-page-sub { margin-left: auto; margin-right: auto; }

.mj-breadcrumbs { font-size: 13px; color: var(--mj-muted); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.mj-breadcrumbs a:hover { color: var(--mj-violet); }
.mj-breadcrumbs .sep { opacity: .5; }

.mj-content-area { padding: 72px 0 var(--mj-section-y); }
.mj-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 54px; align-items: start; }
.mj-layout.no-sidebar { grid-template-columns: minmax(0, 1fr); max-width: 100%; margin: 0 auto; }

.mj-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mj-layout.no-sidebar .mj-posts { grid-template-columns: repeat(3, 1fr); }
.mj-post-card {
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mj-sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mj-post-card:hover { transform: translateY(-5px); box-shadow: var(--mj-sh); }
.mj-post-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--mj-lilac); }
.mj-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mj-post-card:hover .mj-post-thumb img { transform: scale(1.04); }
.mj-post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.mj-post-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mj-violet);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.mj-post-meta .sep { color: var(--mj-muted); opacity: .6; }
.mj-post-card h2, .mj-post-card h3 { font-size: 22px; line-height: 1.18; }
.mj-post-card h2 a:hover, .mj-post-card h3 a:hover { color: var(--mj-violet); }
.mj-post-excerpt { margin-top: 12px; font-size: 14.5px; color: var(--mj-plum-soft); line-height: 1.62; }
.mj-read-more {
  margin-top: 18px;
  align-self: flex-start;
  font-weight: 600;
  font-size: 14px;
  color: var(--mj-violet);
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.mj-read-more:hover { gap: 11px; }
.mj-read-more .arw { transition: transform .22s ease; }

.mj-sticky-flag {
  display: inline-block;
  background: var(--mj-orange);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Single post */
.mj-entry { background: var(--mj-white); border: 1px solid var(--mj-line-soft); border-radius: 26px; padding: 46px 52px; box-shadow: var(--mj-sh-sm); }
.mj-entry-hero-img { border-radius: 24px; overflow: hidden; margin-bottom: 34px; box-shadow: var(--mj-sh-sm); }
.mj-entry-content { font-size: 16.8px; line-height: 1.78; color: var(--mj-plum-soft); }
.mj-entry-content > * + * { margin-top: 1.25em; }
.mj-entry-content h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 1.7em; color: var(--mj-plum); }
.mj-entry-content h3 { font-size: clamp(21px, 2.4vw, 27px); margin-top: 1.5em; color: var(--mj-plum); }
.mj-entry-content h4 { font-size: 19px; margin-top: 1.4em; }
.mj-entry-content a { color: var(--mj-violet); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.mj-entry-content a:hover { color: var(--mj-orange); }
.mj-entry-content strong, .mj-entry-content b { color: var(--mj-plum); font-weight: 600; }
.mj-entry-content ul, .mj-entry-content ol { padding-left: 1.3em; }
.mj-entry-content li + li { margin-top: .5em; }
.mj-entry-content ul { list-style: disc; }
.mj-entry-content ol { list-style: decimal; }
.mj-entry-content blockquote {
  border-left: 3px solid var(--mj-violet);
  padding: 4px 0 4px 24px;
  font-family: var(--mj-serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--mj-plum);
  font-style: italic;
}
.mj-entry-content blockquote cite { display: block; margin-top: 12px; font-family: var(--mj-sans); font-size: 14px; font-style: normal; color: var(--mj-muted); }
.mj-entry-content pre {
  background: var(--mj-dark);
  color: #f3efe9;
  padding: 22px 24px;
  border-radius: 16px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.mj-entry-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; }
.mj-entry-content :not(pre) > code { background: var(--mj-lilac); padding: 2px 7px; border-radius: 6px; color: var(--mj-plum); }
.mj-entry-content img, .mj-entry-content figure img { border-radius: 16px; }
.mj-entry-content figure { margin: 2em 0; }
.mj-entry-content figcaption { margin-top: 10px; font-size: 13.5px; color: var(--mj-muted); text-align: center; }
.mj-entry-content hr { border: 0; border-top: 1px solid var(--mj-line); margin: 2.4em 0; }
.mj-entry-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.mj-entry-content th, .mj-entry-content td { border: 1px solid var(--mj-line); padding: 11px 14px; text-align: left; }
.mj-entry-content th { background: var(--mj-lilac); color: var(--mj-plum); font-weight: 600; }

.mj-entry-footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--mj-line-soft); display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: center; }
.mj-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.mj-tags a {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mj-lilac);
  color: var(--mj-plum-soft);
}
.mj-tags a:hover { background: var(--mj-violet); color: #fff; }

.mj-share { display: flex; gap: 10px; align-items: center; }
.mj-share .lbl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mj-muted); }
.mj-share a {
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid var(--mj-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--mj-plum-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mj-share a:hover { background: var(--mj-plum); color: #fff; border-color: var(--mj-plum); }
.mj-share svg { width: 17px; height: 17px; fill: currentColor; }

.mj-author-box {
  margin-top: 34px;
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 24px;
  padding: 32px 34px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--mj-sh-sm);
}
.mj-author-box img { width: 84px; height: 84px; border-radius: 50%; flex: none; }
.mj-author-box .an { font-family: var(--mj-serif); font-weight: 600; font-size: 19px; }
.mj-author-box .ad { margin-top: 8px; font-size: 14.5px; color: var(--mj-plum-soft); line-height: 1.6; }

.mj-post-nav { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mj-post-nav a {
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 20px;
  padding: 24px 26px;
  display: block;
  box-shadow: var(--mj-sh-sm);
  transition: transform .25s ease;
}
.mj-post-nav a:hover { transform: translateY(-3px); }
.mj-post-nav .dir { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mj-violet); }
.mj-post-nav .ttl { margin-top: 8px; font-family: var(--mj-serif); font-weight: 600; font-size: 17.5px; line-height: 1.25; color: var(--mj-plum); }
.mj-post-nav .is-next { text-align: right; }

/* Pagination */
.mj-pagination { margin-top: 46px; display: flex; justify-content: center; }
.mj-pagination .nav-links { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.mj-pagination .page-numbers {
  min-width: 46px; height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--mj-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  color: var(--mj-plum);
  background: var(--mj-white);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mj-pagination .page-numbers:hover,
.mj-pagination .page-numbers.current { background: var(--mj-plum); color: #fff; border-color: var(--mj-plum); }
.mj-pagination .page-numbers.dots { background: transparent; border-color: transparent; }
.mj-pagination .nav-links a::after { display: none; }

/* Sidebar */
.mj-sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 22px; }
.mj-sidebar .widget {
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: var(--mj-sh-sm);
}
.mj-sidebar .widget-title {
  font-family: var(--mj-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--mj-plum);
}
.mj-sidebar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.mj-sidebar li a { font-size: 14.8px; color: var(--mj-plum-soft); }
.mj-sidebar li a:hover { color: var(--mj-violet); }
.mj-sidebar .widget_categories li,
.mj-sidebar .widget_archive li { display: flex; justify-content: space-between; gap: 10px; }

/* Search form */
.mj-searchform { display: flex; gap: 9px; }
.mj-searchform input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--mj-line);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  background: var(--mj-white);
  color: var(--mj-plum);
}
.mj-searchform input[type="search"]:focus { outline: none; border-color: var(--mj-violet); }
.mj-searchform button {
  border: 0;
  background: var(--mj-plum);
  color: #fff;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: background .2s ease;
}
.mj-searchform button:hover { background: var(--mj-orange); }

/* Comments */
.mj-comments { margin-top: 42px; background: var(--mj-white); border: 1px solid var(--mj-line-soft); border-radius: 26px; padding: 40px 44px; box-shadow: var(--mj-sh-sm); }
.mj-comments-title { font-family: var(--mj-serif); font-size: 26px; font-weight: 600; margin-bottom: 28px; }
.comment-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.comment-list .children { list-style: none; margin: 24px 0 0 34px; padding-left: 24px; border-left: 2px solid var(--mj-line-soft); display: flex; flex-direction: column; gap: 24px; }
.comment-body { display: block; }
.mj-comment-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.mj-comment-head img { border-radius: 50%; }
.mj-comment-author { font-family: var(--mj-serif); font-weight: 600; font-size: 16px; }
.mj-comment-date { font-size: 12.5px; color: var(--mj-muted); }
.comment-content { font-size: 15.3px; color: var(--mj-plum-soft); line-height: 1.7; }
.comment-content p + p { margin-top: .9em; }
.reply { margin-top: 10px; }
.comment-reply-link { font-size: 13px; font-weight: 600; color: var(--mj-violet); }
.comment-respond { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--mj-line-soft); }
.comment-reply-title { font-family: var(--mj-serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.comment-form p { margin: 0; display: flex; flex-direction: column; gap: 7px; }
.comment-form .comment-form-comment,
.comment-form .form-submit,
.comment-form .comment-notes,
.comment-form .comment-form-cookies-consent { grid-column: 1 / -1; }
.comment-form label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mj-plum-soft); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--mj-line);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  background: var(--mj-cream);
  color: var(--mj-plum);
}
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--mj-violet); background: #fff; }
.comment-form .comment-notes { font-size: 13.5px; color: var(--mj-muted); }
/*
 * Links sitting inside a paragraph must be distinguishable by more than
 * colour alone (WCAG 1.4.1), so prose links carry an underline.
 */
.comment-notes a,
.comment-content a,
.mj-author-box .ad a,
.logged-in-as a { text-decoration: underline; text-underline-offset: 2px; }
.comment-form .comment-form-cookies-consent { flex-direction: row; align-items: center; gap: 10px; }
.comment-form .comment-form-cookies-consent label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13.5px; }
.comment-form .submit {
  background: var(--mj-orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 15px 32px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease;
}
.comment-form .submit:hover { background: var(--mj-orange-d); }

/* 404 + no results */
.mj-empty { text-align: center; max-width: 620px; margin: 0 auto; padding: 40px 0; }
.mj-empty .code { font-family: var(--mj-serif); font-size: clamp(90px, 16vw, 180px); line-height: .9; background: var(--mj-grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.mj-empty h1 { font-size: clamp(28px, 4vw, 44px); margin-top: 16px; }
.mj-empty p { margin-top: 16px; color: var(--mj-plum-soft); }
.mj-empty .mj-searchform { margin: 26px auto 0; max-width: 420px; }
.mj-empty .mj-empty-links { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Case study / testimonial single */
.mj-cs-stat-row { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 34px; }
.mj-cs-stat {
  background: var(--mj-white);
  border: 1px solid var(--mj-line-soft);
  border-radius: 20px;
  padding: 22px 26px;
  min-width: 170px;
  box-shadow: var(--mj-sh-sm);
}
.mj-cs-stat .f { font-family: var(--mj-serif); font-weight: 600; font-size: 34px; line-height: 1; background: var(--mj-grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.mj-cs-stat .l { margin-top: 7px; font-size: 13px; color: var(--mj-plum-soft); font-weight: 500; }

/* =========================================================================
   21. WORDPRESS CORE & BLOCK CLASSES
   ========================================================================= */
.alignleft { float: left; margin: .4em 1.8em 1.2em 0; }
.alignright { float: right; margin: .4em 0 1.2em 1.8em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: min(1100px, 92vw); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.mj-entry .alignfull { border-radius: 0; }

.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: 13.5px; color: var(--mj-muted); text-align: center; margin-top: 8px; }
.sticky { position: relative; }
.bypostauthor { }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.gallery-item { margin: 0; }
.gallery img { border-radius: 12px; }

.wp-block-button__link { border-radius: 999px; padding: 15px 30px; font-weight: 600; }
.wp-block-separator { border: 0; border-top: 1px solid var(--mj-line); }
.wp-block-pullquote { border-top: 2px solid var(--mj-violet); border-bottom: 2px solid var(--mj-violet); padding: 28px 0; }
.wp-block-image figcaption { color: var(--mj-muted); }
.wp-block-embed iframe { max-width: 100%; border-radius: 16px; }

/* Colour palette utility classes (mirrors theme.json) */
.has-mj-orange-color { color: var(--mj-orange) !important; }
.has-mj-orange-background-color { background-color: var(--mj-orange) !important; }
.has-mj-violet-color { color: var(--mj-violet) !important; }
.has-mj-violet-background-color { background-color: var(--mj-violet) !important; }
.has-mj-plum-color { color: var(--mj-plum) !important; }
.has-mj-plum-background-color { background-color: var(--mj-plum) !important; }
.has-mj-cream-background-color { background-color: var(--mj-cream) !important; }
.has-mj-lilac-background-color { background-color: var(--mj-lilac) !important; }
.has-mj-white-color { color: #fff !important; }
.has-mj-white-background-color { background-color: #fff !important; }

/* =========================================================================
   22. ANIMATION / REVEAL
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1), transform .75s cubic-bezier(.2, .7, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(22px); }
.stagger.in > * { opacity: 1; transform: none; }

.pr, .ccard, .prob-card, .tcard {
  transition: transform .45s cubic-bezier(.2, .7, .3, 1), box-shadow .3s ease, opacity .6s ease, border-color .3s ease;
}
.pr:hover, .ccard:hover, .prob-card:hover, .tcard:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 44px -20px rgba(42, 38, 34, .30);
}

@keyframes mj-floaty { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(16px, 20px); } }
@keyframes mj-floaty2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-18px, 14px); } }

/* =========================================================================
   23. RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .mj-layout { grid-template-columns: minmax(0, 1fr); }
  .mj-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .mj-sidebar .widget { flex: 1 1 280px; }
  .mj-entry { padding: 38px 34px; }
  .mj-comments { padding: 32px 28px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mj-drawer { display: block; }
  .nav-right .mj-nav-cta { display: none; }
  .problems { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --mj-section-y: 68px; --mj-gutter: 22px; }
  .princ, .tgrid, .about, .fit-grid { grid-template-columns: 1fr; }
  .problems { grid-template-columns: 1fr; }
  .mj-hero { padding: 128px 0 56px; }
  .mj-page-hero { padding: 126px 0 48px; }
  .dark-card, .fit-card { padding: 38px 28px; }
  .arrows { display: none; }
  .ab-media { max-width: 330px; margin: 0 auto; }
  .cta-card { padding: 56px 26px; }
  .float-pill { font-size: 12.5px; padding: 11px 15px; left: 12px; bottom: 82px; }
  .mj-posts, .mj-layout.no-sidebar .mj-posts { grid-template-columns: 1fr; }
  .mj-post-nav { grid-template-columns: 1fr; }
  .mj-post-nav .is-next { text-align: left; }
  .comment-form { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ig-head { align-items: flex-start; }
  .mj-author-box { flex-direction: column; }
}

@media (max-width: 760px) {
  .feat-card { grid-template-columns: 1fr; gap: 26px; padding: 32px 24px; text-align: center; }
  .feat-photo img { width: 180px; height: 180px; margin: 0 auto; }
  .feat-photo::before { display: none; }
  .feat-body h2, .feat-body .fq { max-width: none; }
  .feat-body .eyebrow { justify-content: center; }
  .feat-body .fwho { border-top: none; padding-top: 0; }
  .mj-form { grid-template-columns: 1fr; }
  .logo-box { padding: 24px 18px; gap: 22px 30px; }
  .logo-box .lg { height: 30px; max-width: 120px; }
  .mj-entry { padding: 30px 22px; border-radius: 20px; }
  .mj-comments { padding: 26px 20px; border-radius: 20px; }
  .comment-list .children { margin-left: 0; padding-left: 16px; }
}

@media (max-width: 560px) {
  .hero-stats .hs { flex: 1 1 50%; min-width: 0; }
  .hero-stats .hs:nth-child(2) { border-right: none; }
  .hero-stats .hs:nth-child(1),
  .hero-stats .hs:nth-child(2) { border-bottom: 1px solid var(--mj-line-soft); }
  .foot { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
  .float-cta { right: 12px; bottom: 12px; padding: 12px 20px; font-size: 14px; }
  .float-pill { display: none; }
  .tcard { padding: 24px 22px; }
  .ccard { padding: 28px 24px; min-height: 0; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar #mj-prog { top: 46px; }
}

/* =========================================================================
   24. REDUCED MOTION & PRINT
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .m-track { animation: none !important; }
}

@media print {
  .site-header, .mj-drawer, .float-pill, .float-cta, #mj-prog,
  .site-footer, .mj-comments, .mj-sidebar, .hero-btns, .mj-share { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .mj-entry { border: 0; box-shadow: none; padding: 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
