/*
Theme Name: Magna Production Child
Theme URI: https://magnaproduction.id
Description: Custom Astra child theme for Magna Production — first-hand booth, fit-out, retail signage, and custom furniture contractor with own CNC in Bekasi. Brand-locked typography (GEFIKA × Trobika), editorial homepage, bilingual ID/EN.
Author: Magnativ Group
Author URI: https://magnativ.com
Template: astra
Version: 1.4.50
Text Domain: magnapro-child
*/

/* ============================================================
   BRAND FONTS — GEFIKA display + Trobika body
   ============================================================ */
@font-face {
  font-family: 'Gefika';
  src: url('assets/fonts/Gefika.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trobika';
  src: url('assets/fonts/Trobika-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES — Brand tokens (Magna Production)
   ============================================================ */
:root {
  --mp-black: #2F3640;
  --mp-gold: #D4AF37;
  --mp-gold-dim: rgba(212, 175, 55, 0.1);
  --mp-grey: #DCDDE1;
  --mp-white: #FFFFFF;
  --mp-ink: #14161A;

  --mp-display: 'Gefika', 'Times New Roman', serif;
  --mp-body: 'Trobika', 'Inter', -apple-system, sans-serif;

  --mp-lh-display: 1.1;
  --mp-lh-body: 1.6;
  --mp-ls-display: -0.02em;

  --mp-max: 1440px;
  --mp-gutter: clamp(16px, 4vw, 48px);

  --mp-ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* ============================================================
   BASE OVERRIDES — Astra reset for editorial feel
   ============================================================ */
body.magnapro-home {
  font-family: var(--mp-body);
  background: var(--mp-white);
  color: var(--mp-ink);
  line-height: var(--mp-lh-body);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

.magnapro-home h1,
.magnapro-home h2,
.magnapro-home h3,
.magnapro-home h4 {
  font-family: var(--mp-display);
  line-height: var(--mp-lh-display);
  letter-spacing: var(--mp-ls-display);
  font-weight: 400;
  margin: 0;
}

.magnapro-home a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s var(--mp-ease);
}

/* ============================================================
   CUSTOM GOLD CURSOR
   ============================================================ */
.mp-cursor-dot,
.mp-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.mp-cursor-dot { width: 8px; height: 8px; background: var(--mp-gold); }
.mp-cursor-ring {
  width: 24px; height: 24px;
  border: 1px solid var(--mp-gold);
  transition: width .3s var(--mp-ease), height .3s var(--mp-ease);
}
.mp-cursor-ring.hovering { width: 56px; height: 56px; }

@media (max-width: 1024px) {
  body.magnapro-home { cursor: auto; }
  .mp-cursor-dot, .mp-cursor-ring { display: none; }
}

/* ============================================================
   SECTIONS — Global container + blueprint grid
   ============================================================ */
.mp-section {
  position: relative;
  padding: clamp(64px, 10vw, 160px) var(--mp-gutter);
  max-width: var(--mp-max);
  margin: 0 auto;
}

.mp-blueprint {
  background-image:
    linear-gradient(var(--mp-gold-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--mp-gold-dim) 1px, transparent 1px);
  background-size: 60px 60px;
}

.mp-section-label {
  font-family: var(--mp-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mp-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.mp-section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--mp-gold);
}

.mp-index-number {
  position: absolute;
  top: 0;
  left: var(--mp-gutter);
  font-family: var(--mp-display);
  font-size: clamp(80px, 14vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1px var(--mp-gold);
  pointer-events: none;
  line-height: 1;
  opacity: 0.3;
}

/* ============================================================
   HERO (Section 1)
   ============================================================ */
.mp-hero {
  min-height: 100vh;
  background: var(--mp-black);
  color: var(--mp-white);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px var(--mp-gutter);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.mp-hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-grey);
  z-index: 2;
}
.mp-hero-topbar .mp-coords {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mp-hero-topbar .mp-coords::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mp-gold);
  border-radius: 50%;
  animation: mp-pulse 2s infinite;
}
@keyframes mp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mp-lang {
  display: flex;
  gap: 4px;
  align-items: center;
}
.mp-lang a {
  padding: 4px 8px;
  border: 1px solid transparent;
  transition: border-color .3s;
}
.mp-lang a.active { border-color: var(--mp-gold); color: var(--mp-gold); }

.mp-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  padding: 48px 0;
}

.mp-hero-content h1 {
  font-size: clamp(44px, 9vw, 120px);
  color: var(--mp-white);
  max-width: 15ch;
  margin-bottom: 32px;
}
.mp-hero-content h1 .gold { color: var(--mp-gold); }

.mp-hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--mp-grey);
  max-width: 60ch;
  margin-bottom: 48px;
  line-height: 1.5;
}

.mp-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--mp-body);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--mp-gold);
  transition: all .3s var(--mp-ease);
  cursor: none;
}
.mp-btn-primary {
  background: var(--mp-gold);
  color: var(--mp-black);
}
.mp-btn-primary:hover {
  background: transparent;
  color: var(--mp-gold);
}
.mp-btn-ghost {
  background: transparent;
  color: var(--mp-gold);
}
.mp-btn-ghost:hover {
  background: var(--mp-gold);
  color: var(--mp-black);
}

.mp-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(220, 221, 225, 0.15);
  z-index: 2;
  flex-wrap: wrap;
}
.mp-hero-trust-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-grey);
  opacity: 0.6;
}
.mp-hero-trust-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--mp-display);
  font-size: 20px;
  color: var(--mp-grey);
  opacity: 0.7;
  letter-spacing: 0.15em;
}

/* SVG wireframe booth (section 1 bg) */
.mp-hero-wireframe {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6vw;
}
.mp-hero-wireframe svg {
  width: 60%;
  max-width: 800px;
  height: auto;
  stroke: var(--mp-gold);
  fill: none;
  stroke-width: 0.5;
}

/* ============================================================
   POSITIONING (Section 2) — Editorial dark panel
   ============================================================ */
.mp-positioning {
  background: var(--mp-black);
  color: var(--mp-white);
  padding: clamp(120px, 20vw, 240px) var(--mp-gutter);
  position: relative;
  overflow: hidden;
}
.mp-positioning .mp-blueprint-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.mp-positioning-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.mp-positioning h2 {
  font-size: clamp(32px, 5.5vw, 72px);
  font-style: italic;
  max-width: 22ch;
  line-height: 1.15;
}
.mp-positioning h2 .gold { color: var(--mp-gold); }

.mp-positioning .mp-index-number {
  top: 40px;
  font-size: clamp(120px, 20vw, 240px);
}

.mp-gold-seam {
  width: 100%;
  height: 1px;
  background: var(--mp-gold);
  margin-top: 80px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--mp-ease);
}
.mp-gold-seam.in-view { transform: scaleX(1); }

/* ============================================================
   SERVICES (Section 3)
   ============================================================ */
.mp-services {
  background: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
  position: relative;
}
.mp-services-header { max-width: 800px; margin-bottom: 80px; }
.mp-services-header h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--mp-ink);
  max-width: 22ch;
}
.mp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(47, 54, 64, 0.15);
}
.mp-service-card {
  padding: 48px 32px;
  border-right: 1px solid rgba(47, 54, 64, 0.15);
  border-bottom: 1px solid rgba(47, 54, 64, 0.15);
  position: relative;
  transition: background .4s var(--mp-ease);
}
.mp-service-card:hover {
  background: var(--mp-black);
  color: var(--mp-white);
}
.mp-service-num {
  font-family: var(--mp-display);
  font-size: 48px;
  color: transparent;
  -webkit-text-stroke: 1px var(--mp-gold);
  margin-bottom: 32px;
  display: block;
}
.mp-service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: var(--mp-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mp-service-card p {
  color: rgba(47, 54, 64, 0.7);
  transition: color .4s;
}
.mp-service-card:hover p { color: var(--mp-grey); }
.mp-service-arrow {
  margin-top: 32px;
  color: var(--mp-gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s var(--mp-ease);
}
.mp-service-card:hover .mp-service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   FEATURED CASE (Section 4)
   ============================================================ */
.mp-case-featured {
  background: var(--mp-ink);
  color: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) 0 0;
  position: relative;
  overflow: hidden;
}
.mp-case-featured-inner { padding: 0 var(--mp-gutter); }
.mp-case-client {
  font-size: clamp(40px, 7vw, 96px);
  margin: 24px 0 48px;
  color: var(--mp-white);
}
.mp-case-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-grey);
}
.mp-case-meta div { display: flex; flex-direction: column; gap: 4px; }
.mp-case-meta strong { color: var(--mp-gold); font-family: var(--mp-display); font-size: 24px; font-weight: 400; }

.mp-case-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(280px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0 var(--mp-gutter) 80px;
  scroll-snap-type: x mandatory;
}
.mp-case-step {
  scroll-snap-align: start;
  padding: 40px 32px;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  min-height: 300px;
}
.mp-case-step-num {
  font-family: var(--mp-display);
  font-size: 48px;
  color: var(--mp-gold);
  display: block;
  margin-bottom: 16px;
}
.mp-case-step h4 {
  font-family: var(--mp-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--mp-gold);
}
.mp-case-step p {
  color: var(--mp-grey);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   PORTFOLIO GRID (Section 5)
   ============================================================ */
.mp-portfolio {
  background: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
}
.mp-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 32px;
}
.mp-portfolio-header h2 {
  font-size: clamp(32px, 5vw, 64px);
}
.mp-filter {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.mp-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mp-gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mp-filter-group select {
  background: transparent;
  border: none;
  font-family: var(--mp-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}
.mp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.mp-portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mp-black);
  cursor: none;
}
.mp-portfolio-card:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/5; }
.mp-portfolio-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--mp-black) 0%, #4a5260 100%);
  transition: transform .8s var(--mp-ease);
}
.mp-portfolio-card:hover .mp-portfolio-card-bg { transform: scale(1.05); }
img.mp-portfolio-card-bg { border: 0; }
.mp-portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(47,54,64,0.95) 0%, transparent 60%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--mp-white);
}
.mp-portfolio-card-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-gold);
  margin-bottom: 8px;
}
.mp-portfolio-card-title {
  font-family: var(--mp-display);
  font-size: 32px;
  margin-bottom: 8px;
}
.mp-portfolio-card-meta { font-size: 12px; color: var(--mp-grey); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   INDUSTRY VERTICALS (Section 6)
   ============================================================ */
.mp-industries {
  background: var(--mp-ink);
  color: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
}
.mp-industries h2 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 64px;
  max-width: 22ch;
}
.mp-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(212, 175, 55, 0.2);
}
.mp-industry-card {
  background: var(--mp-ink);
  padding: 64px 32px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.mp-industry-card:hover { background: var(--mp-black); }
.mp-industry-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-gold); }
.mp-industry-title { font-family: var(--mp-display); font-size: 40px; margin: 32px 0 24px; }
.mp-industry-desc { color: var(--mp-grey); font-size: 14px; line-height: 1.6; margin-bottom: 32px; }
.mp-industry-link { color: var(--mp-gold); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============================================================
   WORKSHOP (Section 7)
   ============================================================ */
.mp-workshop {
  background: var(--mp-black);
  color: var(--mp-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.mp-workshop-visual {
  background:
    linear-gradient(135deg, rgba(47,54,64,0.4), rgba(20,22,26,0.8)),
    radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.15), transparent 60%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-workshop-svg {
  width: 80%;
  max-width: 500px;
  color: var(--mp-gold);
}
.mp-workshop-copy {
  padding: clamp(64px, 10vw, 120px) var(--mp-gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mp-workshop-copy h2 {
  font-size: clamp(32px, 5vw, 64px);
  margin: 24px 0 32px;
  max-width: 18ch;
}
.mp-workshop-copy p { color: var(--mp-grey); font-size: 18px; line-height: 1.6; margin-bottom: 40px; max-width: 50ch; }
.mp-workshop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.mp-workshop-stats div { display: flex; flex-direction: column; gap: 8px; }
.mp-workshop-stats strong {
  font-family: var(--mp-display);
  font-size: 48px;
  color: var(--mp-gold);
  font-weight: 400;
}
.mp-workshop-stats span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-grey); }

@media (max-width: 900px) {
  .mp-workshop { grid-template-columns: 1fr; }
  .mp-workshop-visual { min-height: 400px; }
  .mp-workshop-stats { grid-template-columns: repeat(3, 1fr); }
  .mp-workshop-stats strong { font-size: 28px; }
}

/* ============================================================
   SUSTAINABILITY (Section 8)
   ============================================================ */
.mp-sustainability {
  background: #1d2620;
  color: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
  position: relative;
}
.mp-sustainability-inner { max-width: 1200px; margin: 0 auto; }
.mp-sustainability h2 {
  font-size: clamp(32px, 5vw, 72px);
  max-width: 18ch;
  margin-bottom: 64px;
}
.mp-sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 64px;
}
.mp-pillar { border-top: 1px solid var(--mp-gold); padding-top: 24px; }
.mp-pillar-num {
  font-family: var(--mp-display);
  font-size: 56px;
  color: var(--mp-gold);
}
.mp-pillar-title {
  font-family: var(--mp-body);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 16px 0;
}
.mp-pillar-desc { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ============================================================
   QUOTE BUILDER TEASER (Section 9)
   ============================================================ */
.mp-quote-builder {
  background: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
  position: relative;
}
.mp-qb-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid rgba(47,54,64,0.15);
  position: relative;
}
.mp-qb-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--mp-gold);
  border-left: 2px solid var(--mp-gold);
}
.mp-qb-inner::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--mp-gold);
  border-right: 2px solid var(--mp-gold);
}
.mp-qb-inner h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  max-width: 18ch;
  margin-bottom: 24px;
  color: var(--mp-ink);
}
.mp-qb-inner p { font-size: 18px; color: rgba(47,54,64,0.7); margin-bottom: 32px; max-width: 50ch; }
.mp-qb-steps { display: flex; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-gold); }
.mp-qb-steps span::before { content: '0'; }

/* ============================================================
   EVENT CALENDAR (Section 10)
   ============================================================ */
.mp-events {
  background: var(--mp-black);
  color: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) 0;
}
.mp-events-header { padding: 0 var(--mp-gutter); margin-bottom: 64px; }
.mp-events-header h2 { font-size: clamp(32px, 5vw, 64px); max-width: 22ch; }
.mp-events-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 24px var(--mp-gutter);
  scroll-snap-type: x mandatory;
}
.mp-event-card {
  flex: 0 0 320px;
  padding: 40px 32px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--mp-ink);
  scroll-snap-align: start;
  transition: border-color .3s;
}
.mp-event-card:hover { border-color: var(--mp-gold); }
.mp-event-date { font-family: var(--mp-display); font-size: 40px; color: var(--mp-gold); margin-bottom: 16px; }
.mp-event-name { font-family: var(--mp-body); font-size: 18px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.mp-event-venue { font-size: 13px; color: var(--mp-grey); margin-bottom: 24px; }
.mp-event-link { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-gold); }

/* ============================================================
   TESTIMONIAL (Section 11)
   ============================================================ */
.mp-testimonial {
  background: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
  position: relative;
}
.mp-testimonial-inner { max-width: 1100px; margin: 0 auto; }
.mp-testimonial-quote {
  font-family: var(--mp-display);
  font-size: clamp(28px, 4.5vw, 60px);
  font-style: italic;
  line-height: 1.25;
  color: var(--mp-ink);
  margin: 40px 0;
  max-width: 24ch;
}
.mp-testimonial-quote::before { content: '"'; color: var(--mp-gold); font-size: 1.5em; display: block; line-height: 0.5; margin-bottom: 16px; }
.mp-testimonial-who { display: flex; align-items: center; gap: 16px; padding-top: 32px; border-top: 1px solid var(--mp-gold); max-width: 400px; }
.mp-testimonial-who strong { font-family: var(--mp-body); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.mp-testimonial-who span { color: rgba(47,54,64,0.6); font-size: 13px; }

/* ============================================================
   TEAM (Section 12)
   ============================================================ */
.mp-team {
  background: var(--mp-ink);
  color: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
}
.mp-team h2 { font-size: clamp(32px, 5vw, 64px); max-width: 22ch; margin-bottom: 64px; }
.mp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(212,175,55,0.2);
}
.mp-team-card {
  background: var(--mp-ink);
  padding: 40px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .3s;
}
.mp-team-card:hover { background: var(--mp-black); }
.mp-team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--mp-gold), rgba(212,175,55,0.3));
  border-radius: 50%;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mp-display);
  font-size: 32px;
  color: var(--mp-black);
}
.mp-team-name { font-family: var(--mp-body); font-size: 16px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.mp-team-role { font-size: 12px; color: var(--mp-gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================================
   BLOG (Section 13)
   ============================================================ */
.mp-blog {
  background: var(--mp-white);
  padding: clamp(80px, 12vw, 160px) var(--mp-gutter);
}
.mp-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 32px;
}
.mp-blog-header h2 { font-size: clamp(32px, 5vw, 56px); max-width: 16ch; }
.mp-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.mp-blog-card { border-top: 1px solid rgba(47,54,64,0.15); padding-top: 32px; }
.mp-blog-num { font-family: var(--mp-display); font-size: 56px; color: transparent; -webkit-text-stroke: 1px var(--mp-gold); display: block; margin-bottom: 24px; }
.mp-blog-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-gold); margin-bottom: 12px; display: block; }
.mp-blog-title { font-family: var(--mp-display); font-size: 28px; line-height: 1.2; margin-bottom: 16px; color: var(--mp-ink); }
.mp-blog-excerpt { font-size: 14px; color: rgba(47,54,64,0.7); line-height: 1.6; }

/* ============================================================
   CTA FINAL (Section 14)
   ============================================================ */
.mp-cta-final {
  background: var(--mp-black);
  color: var(--mp-white);
  padding: clamp(120px, 20vw, 240px) var(--mp-gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mp-cta-final h2 {
  font-size: clamp(40px, 10vw, 180px);
  line-height: 0.95;
  max-width: 14ch;
  margin: 0 auto 48px;
  color: var(--mp-white);
}
.mp-cta-final .gold { color: var(--mp-gold); }
.mp-cta-final-buttons { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER (Section 15)
   ============================================================ */
.mp-footer {
  background: var(--mp-ink);
  color: var(--mp-white);
  padding: 80px var(--mp-gutter) 32px;
}
.mp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  max-width: var(--mp-max);
  margin-left: auto;
  margin-right: auto;
}
.mp-footer-brand img { width: 180px; margin-bottom: 24px; }
.mp-footer-brand p { font-size: 13px; color: var(--mp-grey); max-width: 30ch; line-height: 1.7; }
.mp-footer h4 { font-family: var(--mp-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mp-gold); margin-bottom: 16px; font-weight: 500; }
.mp-footer ul { list-style: none; padding: 0; }
.mp-footer li { margin-bottom: 8px; }
.mp-footer a { font-size: 14px; color: rgba(220,221,225,0.7); }
.mp-footer a:hover { color: var(--mp-gold); }
.mp-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(220,221,225,0.15);
  font-size: 12px;
  color: rgba(220,221,225,0.5);
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--mp-max);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .mp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.mp-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--mp-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  color: var(--mp-black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform .3s var(--mp-ease);
}
.mp-whatsapp-float:hover { transform: scale(1.1); }
.mp-whatsapp-float svg { width: 28px; height: 28px; }

/* Hide unconfigured HT Click-to-Chat plugin — theme provides .mp-whatsapp-float */
#ht-ctc-chat,
.ht-ctc,
.ht-ctc-chat-div { display: none !important; }

.mp-scroll-progress {
  position: fixed;
  top: 0;
  right: 24px;
  width: 1px;
  height: 100vh;
  background: rgba(212,175,55,0.1);
  z-index: 999;
}
.mp-scroll-progress::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: var(--scroll-pct, 0%);
  background: var(--mp-gold);
  transition: height .1s linear;
}

@media (max-width: 768px) {
  .mp-scroll-progress { display: none; }
}

/* ============================================================
   UTILITIES + MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .mp-hero-content h1 { max-width: 100%; }
  .mp-case-steps { grid-template-columns: repeat(6, 85vw); }
  .mp-portfolio-card:first-child { grid-column: span 1; grid-row: auto; aspect-ratio: 4/3; }
  .mp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mp-footer-brand { grid-column: span 2; }
}

/* ============================================================
   ASTRA OVERRIDES — hide default chrome on magnapro-home
   ============================================================ */
body.magnapro-home,
body.magnapro-home * {
  box-sizing: border-box;
}
body.magnapro-home {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Force main + sections full-bleed, break out of Astra's .ast-container */
body.magnapro-home #mp-home,
body.magnapro-home .mp-home-main {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}
body.magnapro-home #mp-home > section,
body.magnapro-home #mp-home > footer,
body.magnapro-home .mp-home-main > section,
body.magnapro-home .mp-home-main > footer {
  width: 100%;
  max-width: 100%;
}

/* Constrain internal scroll containers so they don't push parent width */
.mp-case-steps,
.mp-events-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.mp-case-featured,
.mp-events {
  overflow: hidden;
}
body.magnapro-home #page > .site-header,
body.magnapro-home header.site-header,
body.magnapro-home .ast-primary-header-bar,
body.magnapro-home .main-header-bar,
body.magnapro-home footer.site-footer,
body.magnapro-home .ast-header-break-point,
body.magnapro-home .site-below-header-wrap,
body.magnapro-home .site-above-header-wrap {
  display: none !important;
}
body.magnapro-home #content,
body.magnapro-home .site-content,
body.magnapro-home .ast-container,
body.magnapro-home .site-content > .ast-container,
body.magnapro-home .ast-container > #primary {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
body.magnapro-home #primary,
body.magnapro-home main#main,
body.magnapro-home article,
body.magnapro-home .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
body.magnapro-home .entry-header,
body.magnapro-home .ast-article-single .entry-header,
body.magnapro-home .post-thumb-img-content,
body.magnapro-home .ast-single-post > .entry-header {
  display: none !important;
}

/* lang toggle as inline anchors */
body.magnapro-home .mp-lang a {
  display: inline-block;
  color: var(--mp-grey);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-left: 2px;
}

/* positioning h2 span.gold inline */
.mp-positioning h2 .gold,
.mp-hero-content h1 .gold,
.mp-cta-final h2 .gold {
  color: var(--mp-gold);
}

/* featured case featured-inner padding */
.mp-case-featured-inner {
  max-width: var(--mp-max);
  margin: 0 auto;
}

/* services/industries/team/blog headers centered in container */
.mp-services,
.mp-portfolio,
.mp-industries,
.mp-sustainability,
.mp-quote-builder,
.mp-testimonial,
.mp-team,
.mp-blog,
.mp-cta-final {
  max-width: 100%;
}
.mp-services-header,
.mp-portfolio-header,
.mp-industries > .mp-section-label,
.mp-industries > h2,
.mp-industries-grid,
.mp-sustainability-inner,
.mp-qb-inner,
.mp-events-header,
.mp-events-scroll,
.mp-testimonial-inner,
.mp-team > .mp-section-label,
.mp-team > h2,
.mp-team-grid,
.mp-blog-header,
.mp-blog-grid {
  max-width: var(--mp-max);
  margin-left: auto;
  margin-right: auto;
}

.mp-industries > .mp-section-label,
.mp-industries > h2,
.mp-team > .mp-section-label,
.mp-team > h2 {
  display: block;
}

/* ensure UL reset inside footer/lang (remove Astra list bullets) */
body.magnapro-home .mp-hero-trust-logos,
body.magnapro-home .mp-lang,
body.magnapro-home .mp-footer ul,
body.magnapro-home .mp-cta-row,
body.magnapro-home .mp-cta-final-buttons,
body.magnapro-home .mp-qb-steps,
body.magnapro-home .mp-filter {
  list-style: none;
  padding-left: 0;
}

/* blog card link + industry link underline on hover */
.mp-industry-link:hover,
.mp-event-link:hover { color: var(--mp-white); }

/* polish: testimonial gold quote mark visual */
.mp-testimonial::before {
  content: '';
  position: absolute;
  top: 40%;
  right: 5%;
  width: 2px;
  height: 120px;
  background: var(--mp-gold);
  opacity: 0.25;
  transform: rotate(15deg);
  pointer-events: none;
}

/* portfolio card — filter hidden state */
.mp-portfolio-card.is-hidden { display: none; }

/* case steps scroll polish */
.mp-case-steps { scrollbar-width: thin; scrollbar-color: var(--mp-gold) transparent; }
.mp-case-steps::-webkit-scrollbar { height: 4px; }
.mp-case-steps::-webkit-scrollbar-thumb { background: var(--mp-gold); }

/* events scroll polish */
.mp-events-scroll { scrollbar-width: thin; scrollbar-color: var(--mp-gold) transparent; }
.mp-events-scroll::-webkit-scrollbar { height: 4px; }
.mp-events-scroll::-webkit-scrollbar-thumb { background: var(--mp-gold); }

/* hero subtle animation */
.mp-hero-content h1 { opacity: 0; transform: translateY(20px); animation: mp-fade-up 1s var(--mp-ease) .2s forwards; }
.mp-hero-sub       { opacity: 0; transform: translateY(20px); animation: mp-fade-up 1s var(--mp-ease) .4s forwards; }
.mp-cta-row        { opacity: 0; transform: translateY(20px); animation: mp-fade-up 1s var(--mp-ease) .55s forwards; }
.mp-hero-trust     { opacity: 0; transform: translateY(20px); animation: mp-fade-up 1s var(--mp-ease) .7s forwards; }
@keyframes mp-fade-up { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SERVICE LANDING PAGES
   ============================================================ */
.mp-service-page {
  background: var(--mp-white);
  color: var(--mp-black);
  font-family: 'Trobika', Georgia, serif;
}
.mp-svc-hero {
  padding: 140px 40px 80px;
  background: var(--mp-ink);
  color: var(--mp-white);
  position: relative;
  overflow: hidden;
}
.mp-svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(212,175,55,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
}
.mp-svc-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mp-svc-back {
  display: inline-block;
  color: var(--mp-gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-decoration: none;
}
.mp-svc-back:hover { color: var(--mp-white); }
.mp-svc-title {
  font-family: 'Gefika', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  color: var(--mp-white);
}
.mp-svc-tagline {
  font-size: 22px;
  line-height: 1.45;
  color: var(--mp-gold);
  max-width: 720px;
  margin: 0 0 28px;
}
.mp-svc-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 0 36px;
}
.mp-svc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.mp-svc-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
}
.mp-svc-h2 {
  font-family: 'Gefika', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 0 0 40px;
  color: var(--mp-black);
  letter-spacing: -0.01em;
}
.mp-svc-capabilities { background: var(--mp-white); }
.mp-svc-caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px 40px;
}
.mp-svc-caps li {
  position: relative;
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid rgba(47,54,64,0.1);
  font-size: 16px;
  line-height: 1.6;
}
.mp-svc-caps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 20px;
  height: 1px;
  background: var(--mp-gold);
}
.mp-svc-process { background: #FAFAFA; }
.mp-svc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  counter-reset: mp-step;
}
.mp-svc-steps li {
  padding: 28px;
  background: var(--mp-white);
  border: 1px solid rgba(47,54,64,0.08);
  border-top: 2px solid var(--mp-gold);
  transition: transform .3s var(--mp-ease), box-shadow .3s var(--mp-ease);
}
.mp-svc-steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47,54,64,0.08);
}
.mp-svc-step-num {
  display: block;
  font-family: 'Gefika', serif;
  font-size: 32px;
  color: var(--mp-gold);
  line-height: 1;
  margin-bottom: 12px;
}
.mp-svc-steps li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--mp-black);
}
.mp-svc-steps li p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(47,54,64,0.75);
}
.mp-svc-inds {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.mp-svc-inds li {
  padding: 20px 24px;
  background: var(--mp-ink);
  color: var(--mp-white);
  font-size: 15px;
  letter-spacing: 0.02em;
  border-left: 2px solid var(--mp-gold);
}
.mp-svc-venues {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(47,54,64,0.8);
  max-width: 780px;
}
.mp-svc-faq { background: #FAFAFA; }
.mp-svc-faq-list { max-width: 900px; }
.mp-svc-faq-item {
  background: var(--mp-white);
  border: 1px solid rgba(47,54,64,0.08);
  margin-bottom: 12px;
  padding: 20px 24px;
  transition: border-color .3s var(--mp-ease);
}
.mp-svc-faq-item[open] { border-color: var(--mp-gold); }
.mp-svc-faq-item summary {
  font-size: 17px;
  font-weight: 500;
  color: var(--mp-black);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.mp-svc-faq-item summary::-webkit-details-marker { display: none; }
.mp-svc-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--mp-gold);
  transition: transform .3s var(--mp-ease);
}
.mp-svc-faq-item[open] summary::after { content: '−'; }
.mp-svc-faq-item p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(47,54,64,0.78);
}
.mp-svc-cta-final {
  background: var(--mp-ink);
  color: var(--mp-white);
  text-align: center;
}
.mp-svc-cta-final .mp-svc-inner { padding: 100px 40px; }
.mp-svc-cta-h {
  font-family: 'Gefika', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--mp-white);
}
.mp-svc-cta-final p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.82);
}
.mp-svc-cta-final .mp-svc-cta-row { justify-content: center; }
@media (max-width: 680px) {
  .mp-svc-hero { padding: 100px 20px 60px; }
  .mp-svc-inner { padding: 60px 20px; }
  .mp-svc-title { font-size: clamp(40px, 12vw, 72px); }
}

/* About — story block */
.mp-about-story { max-width: 820px; }
.mp-about-story p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 24px;
  color: rgba(47,54,64,0.82);
}
.mp-about-story p:last-child {
  font-style: italic;
  border-left: 2px solid var(--mp-gold);
  padding-left: 24px;
  color: var(--mp-black);
}

/* Contact — card grid */
.mp-contact-grid-wrap { background: #FAFAFA; }
.mp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.mp-contact-card {
  background: var(--mp-white);
  padding: 32px;
  border: 1px solid rgba(47,54,64,0.08);
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--mp-ease), transform .3s var(--mp-ease);
}
.mp-contact-card:hover {
  border-color: var(--mp-gold);
  transform: translateY(-2px);
}
.mp-contact-primary {
  background: var(--mp-ink);
  color: var(--mp-white);
  border-top: 2px solid var(--mp-gold);
}
.mp-contact-primary p { color: rgba(255,255,255,0.72); }
.mp-contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-gold);
  margin-bottom: 12px;
}
.mp-contact-val {
  font-family: 'Gefika', serif;
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.mp-contact-primary .mp-contact-val { color: var(--mp-white); }
.mp-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: rgba(47,54,64,0.72);
  flex: 1;
}
.mp-contact-card .mp-btn { align-self: flex-start; }
.mp-btn-outline-dark {
  border: 1px solid var(--mp-black);
  color: var(--mp-black);
  background: transparent;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background .3s var(--mp-ease), color .3s var(--mp-ease);
}
.mp-btn-outline-dark:hover {
  background: var(--mp-black);
  color: var(--mp-white);
}

/* ============================================================
   INSIGHTS LISTING + POST (v1.2.1)
   ============================================================ */
.mp-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.mp-insight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--mp-white, #fff);
  border: 1px solid rgba(47, 54, 64, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--mp-ease), border-color .3s var(--mp-ease), box-shadow .3s var(--mp-ease);
}
.mp-insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--mp-gold, #D4AF37);
  box-shadow: 0 20px 60px -30px rgba(47, 54, 64, 0.25);
}
.mp-insight-card-case { border-left: 3px solid var(--mp-gold, #D4AF37); }
.mp-insight-cat {
  font-family: var(--mp-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-gold, #D4AF37);
}
.mp-insight-title {
  font-family: var(--mp-display, "GEFIKA", serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  color: var(--mp-black, #2F3640);
  margin: 0;
}
.mp-insight-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(47, 54, 64, 0.75);
  margin: 0;
  flex: 1;
}
.mp-insight-meta {
  display: flex;
  gap: 8px;
  font-family: var(--mp-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  color: rgba(47, 54, 64, 0.55);
  margin-top: 8px;
}

/* Individual post */
.mp-post-meta {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--mp-mono, "JetBrains Mono", monospace);
  font-size: 13px;
  color: rgba(47, 54, 64, 0.6);
}
.mp-post-inner { max-width: 760px; }
.mp-post-h2 {
  font-family: var(--mp-display, "GEFIKA", serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin: 48px 0 20px;
  color: var(--mp-black, #2F3640);
}
.mp-post-h3 {
  font-family: var(--mp-display, "GEFIKA", serif);
  font-size: clamp(20px, 2.2vw, 24px);
  margin: 32px 0 16px;
  color: var(--mp-black, #2F3640);
}
.mp-post-p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 20px;
  color: var(--mp-black, #2F3640);
}
.mp-post-ul, .mp-post-ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.mp-post-ul li, .mp-post-ol li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.mp-post-quote {
  border-left: 3px solid var(--mp-gold, #D4AF37);
  padding: 14px 22px;
  margin: 28px 0;
  font-family: var(--mp-display, "GEFIKA", serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.4;
  color: var(--mp-black, #2F3640);
  font-style: italic;
}
.mp-post-stat {
  font-family: var(--mp-display, "GEFIKA", serif);
  font-size: clamp(24px, 3vw, 32px);
  padding: 20px 24px;
  border-top: 2px solid var(--mp-gold, #D4AF37);
  border-bottom: 1px solid rgba(47, 54, 64, 0.15);
  margin: 28px 0;
}
@media (max-width: 640px) {
  .mp-insights-grid { grid-template-columns: 1fr; gap: 20px; }
  .mp-insight-card { padding: 24px 22px; }
  .mp-post-p, .mp-post-ul li, .mp-post-ol li { font-size: 16px; }
}

/* ============================================================
   v1.3.0 — IMAGERY: insight thumbs, blog thumbs, hero images
   ============================================================ */

/* insight listing card thumbnails */
.mp-insight-card { padding: 0 !important; overflow: hidden; background: var(--mp-white, #FFFFFF); border: 1px solid rgba(47,54,64,0.1); border-radius: 4px; }
.mp-insight-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #2F3640;
  margin-bottom: 0;
  overflow: hidden;
  transition: transform .6s var(--mp-ease, cubic-bezier(0.645, 0.045, 0.355, 1));
}
.mp-insight-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--mp-ease, cubic-bezier(0.645, 0.045, 0.355, 1));
}
.mp-insight-card:hover .mp-insight-thumb img { transform: scale(1.03); }
.mp-insight-card > .mp-insight-cat,
.mp-insight-card > .mp-insight-title,
.mp-insight-card > .mp-insight-excerpt,
.mp-insight-card > .mp-insight-meta { padding-left: 28px; padding-right: 28px; }
.mp-insight-card > .mp-insight-cat { padding-top: 22px; }
.mp-insight-card > .mp-insight-meta { padding-bottom: 24px; }
.mp-insight-card-case .mp-insight-thumb { border-top: 3px solid var(--mp-gold, #D4AF37); }
.mp-insight-card-case { border-left: none !important; border-top: 3px solid var(--mp-gold, #D4AF37) !important; }

/* homepage blog featured cards — thumbs */
.mp-blog-card { overflow: hidden; display: block; }
.mp-blog-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #2F3640;
  margin-bottom: 28px;
  overflow: hidden;
  transition: transform .6s var(--mp-ease, cubic-bezier(0.645, 0.045, 0.355, 1));
}
.mp-blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--mp-ease, cubic-bezier(0.645, 0.045, 0.355, 1));
}
.mp-blog-card:hover .mp-blog-thumb img { transform: scale(1.03); }

/* service & static page hero with image background */
.mp-svc-hero-img { color: var(--mp-white, #FFFFFF); }
.mp-svc-hero-img .mp-svc-title,
.mp-svc-hero-img .mp-svc-tagline,
.mp-svc-hero-img .mp-svc-intro,
.mp-svc-hero-img .mp-section-label,
.mp-svc-hero-img .mp-svc-back { color: var(--mp-white, #FFFFFF) !important; }
.mp-svc-hero-img .mp-section-label { color: var(--mp-gold, #D4AF37) !important; }
.mp-svc-hero-img .mp-svc-tagline,
.mp-svc-hero-img .mp-svc-intro { opacity: 0.95; }
.mp-post-hero { color: var(--mp-white, #FFFFFF); }
.mp-post-hero .mp-svc-title,
.mp-post-hero .mp-svc-tagline,
.mp-post-hero .mp-section-label,
.mp-post-hero .mp-post-meta,
.mp-post-hero .mp-svc-back { color: var(--mp-white, #FFFFFF) !important; }
.mp-post-hero .mp-section-label { color: var(--mp-gold, #D4AF37) !important; }

/* v1.4.9 — LCP-optimized hero background via <img> + CSS overlay */
.mp-svc-hero-img,
.mp-post-hero { position: relative; isolation: isolate; overflow: hidden; }
.mp-svc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  display: block;
}
.mp-svc-hero-img::before,
.mp-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(47,54,64,0.82) 0%, rgba(47,54,64,0.94) 100%);
  pointer-events: none;
}
.mp-svc-hero-img .mp-svc-hero-inner,
.mp-post-hero .mp-svc-hero-inner { position: relative; z-index: 1; }

/* portfolio card overlay — stronger gradient so text always readable on images */
.mp-portfolio-card-overlay {
  background: linear-gradient(to top, rgba(20,22,26,0.96) 0%, rgba(20,22,26,0.65) 45%, rgba(20,22,26,0.15) 100%) !important;
}

/* ensure gold CTA text contrast on gold button + define missing variants */
.mp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--mp-body, 'Trobika', sans-serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--mp-gold, #D4AF37);
  color: #14161A !important;
  font-weight: 600;
  border: 1px solid var(--mp-gold, #D4AF37);
  transition: all .3s ease;
}
.mp-btn-gold:hover {
  background: transparent;
  color: var(--mp-gold, #D4AF37) !important;
}
.mp-btn-primary {
  color: #14161A !important;
  font-weight: 600;
}
.mp-btn-primary:hover { color: var(--mp-gold, #D4AF37) !important; }
.mp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--mp-body, 'Trobika', sans-serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--mp-white, #FFFFFF);
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 500;
  transition: all .3s ease;
}
.mp-btn-outline:hover {
  background: var(--mp-white, #FFFFFF);
  color: var(--mp-black, #2F3640);
  border-color: var(--mp-white, #FFFFFF);
}
/* outline button on light sections needs dark border */
.mp-svc-cta-final .mp-btn-outline,
.mp-svc-capabilities .mp-btn-outline {
  color: var(--mp-black, #2F3640);
  border-color: rgba(47,54,64,0.3);
}
.mp-svc-cta-final .mp-btn-outline:hover,
.mp-svc-capabilities .mp-btn-outline:hover {
  background: var(--mp-black, #2F3640);
  color: var(--mp-white, #FFFFFF);
  border-color: var(--mp-black, #2F3640);
}

/* workshop section — add visual tile alongside wireframe */
.mp-workshop-visual {
  position: relative;
  overflow: hidden;
}
.mp-workshop-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(47,54,64,0.85), rgba(47,54,64,0.55)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1200&q=75&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.mp-workshop-svg { position: relative; z-index: 1; }

/* team avatars — subtle contextual illustration keeping brutalist feel */
.mp-team-avatar {
  position: relative;
  overflow: hidden;
}
.mp-team-avatar::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, var(--mp-gold, #D4AF37) 0%, transparent 70%);
  opacity: 0.15;
  z-index: 0;
}
.mp-team-avatar > * { position: relative; z-index: 1; }

/* industry card hover — subtle image reveal per industry */
.mp-industry-card {
  position: relative;
  overflow: hidden;
}
.mp-industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}
.mp-industry-card[data-ind="auto"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card[data-ind="tech"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card[data-ind="fnb"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card[data-ind="health"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1631549916768-4119b2e5f926?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card[data-ind="fin"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card[data-ind="event"]::before { background-image: linear-gradient(rgba(47,54,64,0.88),rgba(47,54,64,0.88)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=800&q=65&auto=format&fit=crop'); }
.mp-industry-card:hover::before { opacity: 1; }
.mp-industry-card > * { position: relative; z-index: 1; }
.mp-industry-card:hover { color: var(--mp-white, #FFFFFF); }
.mp-industry-card:hover .mp-industry-title,
.mp-industry-card:hover .mp-industry-tag,
.mp-industry-card:hover .mp-industry-desc,
.mp-industry-card:hover .mp-industry-link { color: var(--mp-white, #FFFFFF) !important; }
.mp-industry-card:hover .mp-industry-tag { color: var(--mp-gold, #D4AF37) !important; }

/* mobile image adjustments */
@media (max-width: 768px) {
  .mp-insight-thumb { aspect-ratio: 16/10; }
  .mp-blog-thumb { aspect-ratio: 16/10; margin-bottom: 20px; }
}

/* ============================================================
   v1.4.0 — HERO METRICS STRIP
   Social proof in hero: tahun pengalaman, project selesai, brands, CNC
   ============================================================ */
.mp-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 720px;
}
.mp-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}
.mp-metric strong {
  font-family: var(--mp-font-display, 'Gefika', serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--mp-gold, #D4AF37);
  letter-spacing: 0.01em;
}
.mp-metric span {
  font-family: var(--mp-font-body, 'Inter', sans-serif);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(220,221,225,0.75);
  line-height: 1.4;
}
@media (max-width: 640px) {
  .mp-hero-metrics {
    gap: 20px 24px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .mp-metric { min-width: calc(50% - 12px); }
  .mp-metric strong { font-size: 1.75rem; }
  .mp-metric span { font-size: 0.75rem; }
}

/* ============================================================
   v1.4.0 — CLIENT LOGO GRID
   18-brand typographic wall, grayscale → gold hover treatment
   ============================================================ */
.mp-clients {
  background: var(--mp-white, #FFFFFF);
  padding: clamp(60px, 8vw, 100px) 24px;
  border-top: 1px solid var(--mp-grey, #DCDDE1);
  border-bottom: 1px solid var(--mp-grey, #DCDDE1);
}
.mp-clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.mp-clients-h {
  font-family: var(--mp-font-display, 'Gefika', serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--mp-black, #2F3640);
  margin: 12px 0 48px;
  letter-spacing: -0.01em;
}
.mp-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--mp-grey, #DCDDE1);
  border: 1px solid var(--mp-grey, #DCDDE1);
  margin-bottom: 36px;
}
.mp-client-cell {
  background: var(--mp-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  min-height: 90px;
  font-family: var(--mp-font-body, 'Inter', sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6A7078;
  text-transform: uppercase;
  transition: color .3s var(--mp-ease, cubic-bezier(.4,0,.2,1)), background .3s var(--mp-ease, cubic-bezier(.4,0,.2,1));
  cursor: default;
}
.mp-client-cell:hover {
  color: var(--mp-black, #2F3640);
  background: #FAFAF7;
}
.mp-clients-note {
  font-family: var(--mp-font-body, 'Inter', sans-serif);
  font-size: 0.9375rem;
  color: rgba(47,54,64,0.72);
  line-height: 1.6;
  margin: 0;
}
.mp-link-gold {
  color: var(--mp-gold, #D4AF37);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.35);
  transition: border-color .2s var(--mp-ease, ease), color .2s var(--mp-ease, ease);
}
.mp-link-gold:hover {
  color: var(--mp-black, #2F3640);
  border-bottom-color: var(--mp-black, #2F3640);
}
@media (max-width: 900px) {
  .mp-clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .mp-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-client-cell { padding: 22px 10px; min-height: 72px; font-size: 0.8125rem; }
  .mp-clients-h { margin-bottom: 32px; }
}

/* ============================================================
   v1.4.0 — WHATSAPP PULSE
   Gentle attention-ring so the float CTA is noticeable
   ============================================================ */
.mp-whatsapp-float {
  animation: mp-whatsapp-pulse 2.4s var(--mp-ease, ease-out) infinite;
}
.mp-whatsapp-float:hover { animation-play-state: paused; }
@keyframes mp-whatsapp-pulse {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 14px rgba(37,211,102,0);   }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0);      }
}
@media (prefers-reduced-motion: reduce) {
  .mp-whatsapp-float { animation: none; }
}

/* ============================================================
   v1.4.0 — BTN GHOST (Tel CTA complement to Hubungi Whatsapp)
   ============================================================ */
.mp-btn-ghost {
  background: transparent;
  color: var(--mp-white, #FFFFFF);
  border: 1px solid rgba(255,255,255,0.4);
}
.mp-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--mp-gold, #D4AF37);
  color: var(--mp-gold, #D4AF37);
}

/* ============================================================
   v1.4.1 - HEADLINE COLOR REVISIONS
   Targeted color overrides for section headlines per brand spec.
   Order of selectors matches the section numbering on front-page.php.
   ============================================================ */

/* [00 POSITIONING] h2 = grey #DCDDE1, .gold span keeps gold */
.mp-positioning h2 {
  color: #DCDDE1;
}
.mp-positioning h2 .gold {
  color: var(--mp-gold, #D4AF37);
}

/* [01 SERVICES] service card h3 = gold #D4AF37 */
.mp-service-card h3 {
  color: var(--mp-gold, #D4AF37);
}

/* [03 PORTFOLIO] card titles = gold #D4AF37 */
.mp-portfolio-card-title {
  color: var(--mp-gold, #D4AF37);
}

/* [04 INDUSTRIES] section h2 + card tags + card titles = gold #D4AF37 */
.mp-industries h2,
.mp-industry-tag,
.mp-industry-title {
  color: var(--mp-gold, #D4AF37);
}

/* [05 WORKSHOP] h2 = gold #D4AF37 */
.mp-workshop-copy h2 {
  color: var(--mp-gold, #D4AF37);
}

/* [06 SUSTAINABILITY] h2 = gold #D4AF37 */
.mp-sustainability h2 {
  color: var(--mp-gold, #D4AF37);
}

/* [08 EVENT CALENDAR] section h2 + event name headlines = gold #D4AF37 */
.mp-events h2,
.mp-event-name {
  color: var(--mp-gold, #D4AF37);
}

/* [10 TEAM] h2 = gold #D4AF37 */
.mp-team h2 {
  color: var(--mp-gold, #D4AF37);
}

/* ============================================================
   v1.4.2 - BUG FIXES + INTERACTIVITY
   1) Service cards are now <a>, fix display/decoration
   2) Back-to-top button
   3) Smooth scroll for anchor links
   4) Count-up animation visual states
   5) Focus-visible outlines for accessibility
   ============================================================ */

/* Service card now <a> - reset anchor defaults, keep card look */
a.mp-service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
a.mp-service-card h3,
a.mp-service-card p {
  text-decoration: none;
}

/* Back-to-top button - appears on scroll */
.mp-back-top {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--mp-black, #2F3640);
  color: var(--mp-gold, #D4AF37);
  border: 1px solid var(--mp-gold, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.mp-back-top[hidden] { display: none !important; }
.mp-back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mp-back-top:hover {
  background: var(--mp-gold, #D4AF37);
  color: var(--mp-black, #2F3640);
}
.mp-back-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
@media (max-width: 640px) {
  .mp-back-top { bottom: 88px; right: 16px; width: 42px; height: 42px; }
}

/* Count-up - seamless transition when strong value updates */
.mp-metric strong {
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}
.mp-metric.is-counting strong {
  color: var(--mp-gold, #D4AF37);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mp-back-top { transition: none; }
}

/* Focus-visible for keyboard nav (accessibility) */
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--mp-gold, #D4AF37);
  outline-offset: 3px;
  border-radius: 2px;
}
a.mp-service-card:focus-visible,
a.mp-portfolio-card:focus-visible,
a.mp-blog-card:focus-visible {
  outline: 2px solid var(--mp-gold, #D4AF37);
  outline-offset: -2px;
}

/* ============================================================
   v1.4.5 — Breadcrumbs, reading progress, share buttons,
   related services, related posts
   ============================================================ */

/* Breadcrumb navigation */
.mp-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(220, 221, 225, 0.75);
  font-family: var(--mp-sans, 'Trobika', sans-serif);
}
.mp-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mp-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.mp-breadcrumb a {
  color: var(--mp-grey, #DCDDE1);
  text-decoration: none;
  transition: color .2s ease;
}
.mp-breadcrumb a:hover {
  color: var(--mp-gold, #D4AF37);
}
.mp-breadcrumb-sep {
  color: var(--mp-gold, #D4AF37);
  opacity: 0.55;
  font-size: 0.9em;
  user-select: none;
}
.mp-breadcrumb [aria-current="page"] {
  color: var(--mp-gold, #D4AF37);
  font-weight: 500;
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .mp-breadcrumb [aria-current="page"] { max-width: 180px; }
}

/* Reading progress (blog posts only) */
.mp-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--mp-gold, #D4AF37) 0%, #E8C661 100%);
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .mp-read-progress { transition: none; }
}

/* Blog post body typography overrides */
.mp-post-page .mp-post-body .mp-post-inner {
  max-width: 760px;
}
.mp-post-page .mp-post-h2 {
  font-family: var(--mp-serif, 'Gefika', serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-top: 48px;
  margin-bottom: 18px;
  color: var(--mp-black, #2F3640);
  font-weight: 600;
  line-height: 1.2;
}
.mp-post-page .mp-post-h3 {
  font-family: var(--mp-serif, 'Gefika', serif);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--mp-black, #2F3640);
  font-weight: 600;
  line-height: 1.3;
}
.mp-post-page .mp-post-p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #2F3640;
}
.mp-post-page .mp-post-ul,
.mp-post-page .mp-post-ol {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px 1.5rem;
  color: #2F3640;
}
.mp-post-page .mp-post-ul li,
.mp-post-page .mp-post-ol li {
  margin-bottom: 8px;
}
.mp-post-page .mp-post-quote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--mp-gold, #D4AF37);
  background: rgba(212, 175, 55, 0.06);
  font-family: var(--mp-serif, 'Gefika', serif);
  font-size: 1.2rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--mp-black, #2F3640);
}
.mp-post-page .mp-post-stat {
  margin: 28px 0;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 100%);
  border-left: 2px solid var(--mp-gold, #D4AF37);
  font-weight: 500;
  color: var(--mp-black, #2F3640);
}

/* Post hero meta line */
.mp-post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(220, 221, 225, 0.85);
  letter-spacing: 0.03em;
}

/* Share buttons section */
.mp-post-share {
  padding: 48px 0 16px;
  background: var(--mp-white, #FAFAF7);
}
.mp-post-share-h {
  font-family: var(--mp-serif, 'Gefika', serif);
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: var(--mp-black, #2F3640);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mp-post-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mp-post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(47, 54, 64, 0.15);
  color: var(--mp-black, #2F3640);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
  font-family: var(--mp-sans, 'Trobika', sans-serif);
}
.mp-post-share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mp-post-share-btn:hover {
  border-color: var(--mp-gold, #D4AF37);
  color: var(--mp-gold, #D4AF37);
  transform: translateY(-1px);
}
.mp-post-share-copy {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.mp-post-share-copy.is-copied {
  background: var(--mp-gold, #D4AF37);
  border-color: var(--mp-gold, #D4AF37);
  color: var(--mp-black, #2F3640);
}

/* Related posts section */
.mp-post-related {
  padding: 56px 0;
  background: var(--mp-white, #FAFAF7);
  border-top: 1px solid rgba(47, 54, 64, 0.08);
}

/* Related services section */
.mp-svc-related {
  padding: 64px 0;
  background: var(--mp-white, #FAFAF7);
  border-top: 1px solid rgba(47, 54, 64, 0.08);
}
.mp-svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .mp-svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mp-svc-related-grid { grid-template-columns: 1fr; }
}
.mp-svc-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(47, 54, 64, 0.08);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.mp-svc-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--mp-gold, #D4AF37);
  box-shadow: 0 10px 28px rgba(47, 54, 64, 0.1);
}
.mp-svc-related-thumb {
  width: calc(100% + 40px);
  margin: -20px -20px 16px;
  aspect-ratio: 16/9;
  background-color: var(--mp-black, #2F3640);
  overflow: hidden;
  filter: grayscale(15%);
  transition: filter .35s ease;
}
.mp-svc-related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-svc-related-card:hover .mp-svc-related-thumb {
  filter: grayscale(0%);
}
.mp-svc-related-card .mp-section-label {
  color: var(--mp-gold, #D4AF37);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.mp-svc-related-title {
  font-family: var(--mp-serif, 'Gefika', serif);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--mp-black, #2F3640);
  font-weight: 600;
  line-height: 1.3;
}
.mp-svc-related-tag {
  font-size: 0.9rem;
  color: rgba(47, 54, 64, 0.7);
  margin: 0 0 12px;
  line-height: 1.45;
}
.mp-svc-related-arrow {
  display: inline-block;
  color: var(--mp-gold, #D4AF37);
  font-size: 1.2rem;
  margin-top: auto;
  transition: transform .3s ease;
}
.mp-svc-related-card:hover .mp-svc-related-arrow {
  transform: translateX(4px);
}

/* ============================================================
   v1.4.7 — Skip-to-content (a11y) + Language switcher
   ============================================================ */

/* Skip-to-content link — visible only on keyboard focus */
.mp-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--mp-black, #2F3640);
  color: var(--mp-gold, #D4AF37);
  padding: 12px 20px;
  border: 1px solid var(--mp-gold, #D4AF37);
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--mp-sans, 'Trobika', sans-serif);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: top .25s ease;
}
.mp-skip-link:focus,
.mp-skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--mp-gold, #D4AF37);
  outline-offset: 2px;
}

/* Language switcher — floating top-right */
.mp-lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(47, 54, 64, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--mp-sans, 'Trobika', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease;
}
.mp-lang-switch:hover {
  background: rgba(47, 54, 64, 0.92);
  border-color: var(--mp-gold, #D4AF37);
}
.mp-lang-current {
  color: var(--mp-gold, #D4AF37);
  font-weight: 600;
}
.mp-lang-divider {
  color: rgba(220, 221, 225, 0.4);
}
.mp-lang-alt {
  color: var(--mp-grey, #DCDDE1);
  text-decoration: none;
  transition: color .2s ease;
}
.mp-lang-alt:hover {
  color: var(--mp-gold, #D4AF37);
}

/* Shift WhatsApp float + back-to-top up on pages where lang switch sits on the right */
@media (max-width: 600px) {
  .mp-lang-switch {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 0.72rem;
  }
}

/* ============================================================
   v1.4.8 — Sticky mobile CTA bar
   Shows on scroll past 400px on mobile. Critical conversion asset
   for WhatsApp-first visitors on phones.
   ============================================================ */
.mp-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 8px;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(47, 54, 64, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
  z-index: 1150;
  transform: translateY(110%);
  transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--mp-sans, 'Trobika', system-ui, sans-serif);
}
.mp-mobile-cta.is-visible {
  transform: translateY(0);
}
.mp-mobile-cta a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
  min-height: 44px; /* a11y tap target */
  white-space: nowrap;
}
.mp-mobile-cta a:active { transform: scale(0.97); }
.mp-mobile-cta-wa {
  background: #25D366;
  color: #0B2B17;
}
.mp-mobile-cta-call {
  background: rgba(212, 175, 55, 0.18);
  color: var(--mp-gold, #D4AF37);
  border: 1px solid rgba(212, 175, 55, 0.42);
}
.mp-mobile-cta-quote {
  background: var(--mp-gold, #D4AF37);
  color: var(--mp-black, #2F3640);
}
.mp-mobile-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mp-mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 78px; }
  /* Lift back-to-top & whatsapp float above the bar when visible */
  .mp-mobile-cta.is-visible ~ .mp-back-top,
  .mp-mobile-cta.is-visible ~ .mp-whatsapp-float {
    transform: translateY(-72px);
  }
  /* Hide floating WhatsApp when sticky bar has same function on mobile */
  .mp-mobile-cta.is-visible ~ .mp-whatsapp-float { opacity: 0; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mp-mobile-cta { transition: none; }
}

/* ============================================================
   v1.4.11 — Blog post Table of Contents
   Injected via JS for posts with 3+ h2 headings.
   ============================================================ */
.mp-post-toc {
  margin: 0 0 32px;
  padding: 18px 22px;
  background: rgba(47, 54, 64, 0.04);
  border-left: 3px solid var(--mp-gold, #D4AF37);
  border-radius: 4px;
}
.mp-post-toc-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mp-black, #2F3640);
  opacity: 0.8;
}
.mp-post-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.mp-post-toc-list li {
  position: relative;
  padding: 4px 0 4px 32px;
  counter-increment: toc;
  line-height: 1.45;
}
.mp-post-toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mp-gold, #D4AF37);
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
}
.mp-post-toc-list a {
  color: var(--mp-black, #2F3640);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.mp-post-toc-list a:hover,
.mp-post-toc-list a:focus-visible {
  color: var(--mp-gold, #D4AF37);
  border-bottom-color: var(--mp-gold, #D4AF37);
  outline: none;
}
/* v1.4.12 — Scroll-spy active state */
.mp-post-toc-list a.is-active {
  color: var(--mp-gold, #D4AF37);
  font-weight: 600;
}
.mp-post-toc-list li:has(a.is-active)::before {
  color: var(--mp-black, #2F3640);
  opacity: 1;
}
.mp-post-h2[id] {
  scroll-margin-top: 90px;
  position: relative;
}
/* v1.4.13 — Heading hover hint + copy-link toast */
.mp-post-h2[id]:hover::after {
  content: "#";
  position: absolute;
  left: -0.8em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mp-gold, #D4AF37);
  opacity: 0.65;
  font-weight: 700;
  pointer-events: none;
}
.mp-heading-copied {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  background: var(--mp-black, #2F3640);
  color: var(--mp-gold, #D4AF37);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  animation: mpHeadingCopiedFade 1.6s ease forwards;
}
@keyframes mpHeadingCopiedFade {
  0% { opacity: 0; transform: translateY(-4px); }
  15% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
@media (max-width: 700px) {
  .mp-post-h2[id]:hover::after { display: none; }
}
@media (max-width: 600px) {
  .mp-post-toc { padding: 14px 16px; }
  .mp-post-toc-list li { padding-left: 28px; }
}

/* ============================================================
   v1.4.12 — Print styles for blog posts
   Hide chrome, optimize text for readability on paper.
   ============================================================ */
@media print {
  /* Hide interactive chrome */
  .mp-lang-switch,
  .mp-mobile-cta,
  .mp-back-top,
  .mp-whatsapp-float,
  .mp-cursor-dot,
  .mp-cursor-ring,
  .mp-scroll-progress,
  .mp-read-progress,
  .mp-skip-link,
  .mp-post-share,
  .mp-post-related,
  .mp-svc-cta-final,
  .mp-footer,
  header.site-header,
  #masthead,
  .mp-svc-back,
  .mp-breadcrumb,
  .mp-post-toc { display: none !important; }

  /* Normalize backgrounds and colors for paper */
  body, .mp-post-page, .mp-service-page { background: #fff !important; color: #000 !important; }
  .mp-svc-hero, .mp-post-hero { height: auto !important; padding: 0 !important; }
  .mp-svc-hero-bg, .mp-post-hero::before, .mp-svc-hero-img::before { display: none !important; }
  .mp-svc-hero-inner { padding: 0 !important; color: #000 !important; }

  /* Typography */
  .mp-svc-title { color: #000 !important; font-size: 28pt !important; line-height: 1.2 !important; page-break-after: avoid; }
  .mp-svc-tagline { color: #333 !important; font-size: 13pt !important; }
  .mp-post-h2 { color: #000 !important; font-size: 16pt !important; page-break-after: avoid; margin-top: 18pt !important; }
  .mp-post-h3 { color: #000 !important; font-size: 13pt !important; page-break-after: avoid; }
  .mp-post-p, .mp-post-ul, .mp-post-ol { color: #111 !important; font-size: 11pt !important; line-height: 1.5 !important; orphans: 3; widows: 3; }
  .mp-post-quote { border-left: 3px solid #000 !important; color: #000 !important; font-style: italic; page-break-inside: avoid; }
  .mp-post-stat { color: #000 !important; border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 6pt 0; }

  /* Keep links readable; append URL for context */
  a { color: #000 !important; text-decoration: underline; }
  .mp-post-body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; word-break: break-all; }
  .mp-post-body a[href^="#"]::after,
  .mp-post-body a[href^="mailto:"]::after,
  .mp-post-body a[href^="tel:"]::after { content: ""; }

  /* Page layout */
  @page { margin: 18mm 16mm; }
  .mp-svc-inner, .mp-post-inner { max-width: none !important; padding: 0 !important; }
  .mp-post-meta { color: #555 !important; font-size: 10pt; border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 6pt 0; margin: 8pt 0 14pt; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}

/* ============================================================
   v1.4.8 — Below-fold content-visibility (render performance)
   Lets browser skip rendering work for off-screen sections until
   they enter the viewport. Estimate reserved heights to avoid CLS.
   ============================================================ */
.mp-industries,
.mp-case-featured,
.mp-portfolio,
.mp-blog,
.mp-cta-final,
.mp-footer,
.mp-venues,
.mp-why-us,
.mp-process {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ============================================================
   v1.4.15 — Branded 404 template
   Helpful navigation with service + post suggestions,
   brand-consistent (black/gold/grey) design.
   ============================================================ */
.mp-404-page { background: #fafafa; min-height: 60vh; }
.mp-404-hero {
  padding: 80px 24px 40px;
  background: linear-gradient(180deg, var(--mp-black, #2F3640) 0%, #3a424e 100%);
  color: #fff;
  text-align: center;
}
.mp-404-inner { max-width: 1000px; margin: 0 auto; }
.mp-404-code {
  font-family: 'GEFIKA', 'Trobika', Georgia, serif;
  font-size: clamp(88px, 18vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--mp-gold, #D4AF37);
  opacity: 0.92;
  margin-bottom: 12px;
  font-weight: 400;
}
.mp-404-title {
  font-family: 'GEFIKA', 'Trobika', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 0 0 12px;
  color: #fff;
  font-weight: 400;
}
.mp-404-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 18px;
}
.mp-404-path {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 13px;
}
.mp-404-path code {
  color: var(--mp-gold, #D4AF37);
  font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  background: transparent;
  padding: 0;
  word-break: break-all;
}
.mp-404-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.mp-404-suggestions {
  padding: 64px 24px;
  background: #fff;
}
.mp-404-suggestions-alt { background: #fafafa; }
.mp-404-h2 {
  font-family: 'GEFIKA', 'Trobika', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 28px;
  color: var(--mp-black, #2F3640);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.mp-404-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.mp-404-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid #e5e5e8;
  border-left: 3px solid var(--mp-gold, #D4AF37);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mp-404-suggestions-alt .mp-404-card { background: #fff; }
.mp-404-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(47, 54, 64, 0.08);
  border-left-color: var(--mp-black, #2F3640);
}
.mp-404-card-num {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mp-gold, #D4AF37);
  margin-bottom: 8px;
  font-weight: 600;
}
.mp-404-card-title {
  font-family: 'GEFIKA', 'Trobika', Georgia, serif;
  font-size: 18px;
  color: var(--mp-black, #2F3640);
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.3;
}
.mp-404-card-tag {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.mp-404-card-post .mp-404-card-title { font-size: 16px; }
.mp-404-quicklinks {
  padding: 48px 24px 80px;
  background: #fafafa;
  border-top: 1px solid #e5e5e8;
}
.mp-404-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mp-404-links li { margin: 0; }
.mp-404-links a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #e0e0e4;
  border-radius: 999px;
  color: var(--mp-black, #2F3640);
  text-decoration: none;
  font-size: 14px;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.mp-404-links a:hover {
  background: var(--mp-black, #2F3640);
  color: var(--mp-gold, #D4AF37);
  border-color: var(--mp-black, #2F3640);
}
@media (max-width: 600px) {
  .mp-404-hero { padding: 56px 20px 32px; }
  .mp-404-suggestions { padding: 48px 20px; }
  .mp-404-grid { grid-template-columns: 1fr; }
  .mp-404-ctas { flex-direction: column; }
  .mp-404-ctas .mp-btn { width: 100%; }
}
