/* ============================================================
   MAZIKOZI.CSS — Mazikoz Brand Page Styles
   All colors hardcoded. No reliance on var() from style.css.
   This file must be loaded AFTER style.css to override it.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* ── BRAND COLOR TOKENS (scoped overrides) ── */
:root {
  --mz-gold:          #c8a96e;
  --mz-gold-dark:     #8b6a30;
  --mz-black:         #0a0a0a;
  --mz-dark:          #111111;
  --mz-dark-border:   #1e1e1e;
  --mz-dark-line:     #1a1a1a;
  --mz-dark-mid:      #2a2a2a;
  --mz-white:         #ffffff;
  --mz-off-white:     #f7f5f0;
  --mz-text-primary:  #1a1a1a;
  --mz-text-mid:      #4a4a4a;
  --mz-text-muted:    #666666;
  --mz-text-pale:     #555555;
  --mz-card-bg:       #f8f7f4;
  --mz-banner-color:  #efbf04;
}

/* ── FORCE RESET blue vars on mazikoz page sections ── */
.hero,
.sec,
.home-dark,
.about-split,
.about-right,
.vm-card,
.pillars,
.pillar,
.vals-grid,
.val-row,
.val-num-box,
.step-card,
.steps,
.wrap {
  /* Override any inherited CSS variable values */
  --color-background-primary:   #ffffff;
  --color-background-secondary: #f8f7f4;
  --color-text-primary:         #1a1a1a;
  --color-text-secondary:       #4a4a4a;
  --color-border-tertiary:      #e0e0e0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
   .hero-wrapper{
  background: #ffffff;
  padding: 25px;
}

.hero {
  /* background: #00007e !important; */
  background: #00007e !important;
  padding: 6rem 2.5rem 5rem;
  text-align: center;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #1a1a1a;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ffffff;
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  background-color: #ffffff;
  /* box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.hb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mz-gold);
  flex-shrink: 0;
}

.hb-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight:bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00007e;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title em {
  font-style: italic;
  color: var(--mz-gold);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 1.8rem 0;
}

.hd-line {
  width: 60px;
  height: 1px;
  background: #ffffff;
}

.hd-diamond {
  width: 6px;
  height: 6px;
  background: var(--mz-gold);
  transform: rotate(45deg);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  font-family: 'DM Sans', sans-serif;
  background: var(--mz-gold);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover {
  background: var(--mz-gold-dark);
  color: #ffffff;
}

.btn-outline-w {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: var(--mz-black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-outline-w:hover {
  background-color: #ffffff;
  color: var(--mz-banner-color);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.sec {
  padding: 5rem 2.5rem;
  background: #ffffff !important;
}

.sec-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.sec-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--mz-gold);
  text-align: center;
  margin-bottom: 0.8rem;
  display: block;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--mz-black);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.sec-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  text-align: center;
  color: #111111;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.9;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mz-black);
  margin-bottom: 1rem;
  display: block;
}

.about-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #00007e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.88;
  color: #111111;
  margin-bottom: 1.2rem;
}

.about-sig {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #00007e;
  margin-top: 1.5rem;
  border-left: 2px solid #00007e;
  padding-left: 1rem;
  line-height: 1.7;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ============================================================
   VISION / MISSION CARDS
   ============================================================ */
.vm-card {
  padding: 2rem 2.2rem;
}

/* Dark card — Vision */
.vm-dark {
  background: #00007e !important;
  border: 0.5px solid #1e1e1e !important;
}

.vm-dark .vm-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mz-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.vm-dark .vm-h {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.vm-dark .vm-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mz-gold);
}

/* Light card — Mission */
.vm-light {
  background: var(--mz-card-bg) !important;
  border: 0.5px solid #e0ddd6 !important;
}

.vm-light .vm-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mz-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.vm-light .vm-h {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mz-black);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.vm-light .vm-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mz-black);
}

/* ============================================================
   DARK SECTION — FOUR PILLARS
   ============================================================ */
.home-dark {
  background: #00007e !important;
}

.home-dark .sec-title {
  color: #ffffff !important;
}

.home-dark .sec-body {
  color: var(--mz-gold) !important;
}

.home-dark .sec-kicker {
  color: var(--mz-gold) !important;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  /* gap: 1px; */
  background: #00007e;
  margin-top: 1rem;
}

.pillar {
  background: var(--mz-dark) !important;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.22s;
}

.pillar:hover {
  background: #faf9f6 !important;
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mz-dark-border);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar:hover .pillar-num {
  color: var(--mz-dark-border);
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.pillar:hover .pillar-title {
  color: var(--mz-black);
}

.pillar-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4f4f53;
  text-align: justify;
}

.pillar:hover .pillar-desc{
  color: #4f4f53;
}


.pillar-rule {
  width: 24px;
  height: 1px;
  background: #c8a96e;
  margin: 1rem auto 0;
}

/* ============================================================
   CORE VALUES — LIGHT SECTION
   ============================================================ */
.sec.values-sec {
  background: #f8f7f4 !important;
}

/* Target the inline style="background:var(--color-background-secondary)" override */
.sec[style*="background"] {
  background: #f8f7f4 !important;
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.val-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #ffffff !important;
  border: 0.5px solid #e5e5e0 !important;
  padding: 1.6rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.val-row:hover {
  border-color: var(--mz-gold-dark) !important;
}

.val-num-box {
  width: 40px;
  height: 40px;
  border: 0.5px solid var(--mz-gold) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent !important;
}

.val-num-box span {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mz-gold) !important;
}

.val-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--mz-black) !important;
  margin-bottom: 0.4rem;
}

.val-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--mz-text-primary) !important;
}

/* ============================================================
   PROMISE / CTA STRIPE
   ============================================================ */
.promise-stripe {
  background: #c8a96e !important;
  padding: 3.5rem 2rem;
  text-align: center;
}

.promise-stripe .promise-q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 700;
  font-style: italic;
  color: #0a0a0a;
  max-width: 700px;
  margin: 0 auto 0.6rem;
  line-height: 1.45;
}

.promise-stripe .promise-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4a3000;
}

/* ============================================================
   TRUST BAR (if used on page)
   ============================================================ */
.trust-bar {
  background: #111111 !important;
  border-top: 0.5px solid #1a1a1a;
  border-bottom: 0.5px solid #1a1a1a;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8a96e;
  flex-shrink: 0;
}

/* ============================================================
   STEP / PROCESS SECTION (Aum Soy journey)
   ============================================================ */
.wrap {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a !important;
  background: #ffffff !important;
}

.step-hero {
  background: #0d2b1f !important;
  padding: 3.5rem 2rem;
  text-align: center;
}

.sh-eye {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6fcf97;
  margin-bottom: 0.8rem;
  display: block;
}

.sh-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 0.8rem;
}

.sh-h em {
  font-style: italic;
  color: #a8e6c3;
}

.sh-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #b5ccc0;
  max-width: 480px;
  margin: 0 auto;
}

.steps {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff !important;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d2b1f !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6fcf97;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  background: #e0ede6 !important;
  flex: 1;
  min-height: 32px;
  margin-top: 6px;
}

.step-card {
  background: #f8f7f4 !important;
  border-radius: 14px;
  border: 0.5px solid #e0e0d8 !important;
  padding: 1.4rem 1.6rem;
}

.step-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a !important;
  margin-bottom: 0.6rem;
}

.step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4a4a !important;
}

.step-pill {
  display: inline-block;
  background: #e8f5ee !important;
  color: #1a4d32 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 0.7rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: #6fcf97 !important;
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.promise-bar {
  background: #0d2b1f !important;
  padding: 2.5rem 2rem;
  text-align: center;
}

.pb-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #f5f0e8 !important;
  max-width: 600px;
  margin: 0 auto 0.5rem;
}

.pb-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #6fcf97 !important;
}

/* ============================================================
   FLOATING SHAPES (decorative — keep neutral)
   ============================================================ */
.floating-shapes {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  background: #c8a96e;
}

.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 200px; left: -80px; }
.shape-3 { width: 200px; height: 200px; bottom: -60px; right: 200px; }

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .vals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .hero-wrapper{
    padding: 12px;
  }

  .hero{
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 4rem 1.5rem 3.5rem;
  }

  .sec {
    padding: 3.5rem 1.5rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .about-h {
    font-size: 1.8rem;
  }
}