/* ===== SECTIONS V2 — MA-ZAL ===== */
/* hero + about + divisions + presence + coffee + education + contact */

/* ── Shared Section Base ── */
.mz-section {
  padding: 96px 0 80px;
  position: relative;
}

.mz-section--alt {
  background:
    radial-gradient(ellipse 800px 400px at 10% 50%, rgba(90, 65, 20, 0.06), transparent 65%),
    rgba(44, 34, 16, 0.35);
}

/* Section head */
.mz-section-head {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mz-section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0;
  opacity: 0.80;
}

.mz-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: #E8D9B8;
  letter-spacing: -0.01em;
  max-width: 680px;
}

.mz-section-divider {
  margin: 4px 0 2px;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent2), transparent);
}

[dir="rtl"] .mz-section-divider {
  background: linear-gradient(270deg, var(--accent2), transparent);
}

.mz-section-lead {
  margin: 0;
  color: rgb(232, 217, 184);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
}

/* ── Shared Card ── */
.mz-card {
  background: rgba(52, 40, 20, 0.60);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 22px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: .22s ease;
}

.mz-card--clickable {
  cursor: pointer;
}

.mz-card--clickable:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.50);
  box-shadow: 0 16px 48px rgba(10, 6, 0, 0.28),
              0 0 0 1px rgba(201, 168, 76, 0.12);
  background: rgba(58, 44, 22, 0.70);
}

.mz-card--clickable:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

.mz-card-go {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(10, 6, 0, 0.55);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201, 168, 76, 0.80);
  font-size: 14px;
  transition: .18s ease;
  z-index: 2;
}

[dir="rtl"] .mz-card-go {
  right: auto; left: 16px;
}

.mz-card--clickable:hover .mz-card-go {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.55);
}

.mz-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  margin-bottom: 16px;
  background: rgba(10, 6, 0, 0.40);
}

.mz-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.mz-card--clickable:hover .mz-card-media img {
  transform: scale(1.04);
}

.mz-card-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.20);
  background: rgba(10, 6, 0, 0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 12px;
}

.mz-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #E8D9B8;
  margin-bottom: 8px;
  line-height: 1.3;
}

.mz-card-text {
  color: rgba(232, 217, 184, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.mz-card-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mz-card-pills span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(10, 6, 0, 0.35);
  color: rgba(196, 172, 122, 0.70);
  font-size: 11px;
  font-weight: 500;
}

/* ── Shared Buttons ── */
.mz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s ease;
  border: none;
  text-decoration: none;
}

.mz-btn-primary {
  background: rgba(122, 92, 30, 0.30);
  color: #E8D9B8;
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 4px 16px rgba(122, 92, 30, 0.15);
}

.mz-btn-primary:hover {
  background: rgba(122, 92, 30, 0.45);
  border-color: rgba(201, 168, 76, 0.70);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(122, 92, 30, 0.22);
}

.mz-btn-outline {
  background: transparent;
  color: rgba(201, 168, 76, 0.80);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.mz-btn-outline:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.52);
  color: #C9A84C;
  transform: translateY(-1px);
}

.mz-btn-ghost {
  background: transparent;
  color: rgba(232, 217, 184, 0.75);
  border: 1px solid rgba(232, 217, 184, 0.20);
}

.mz-btn-ghost:hover {
  background: rgba(232, 217, 184, 0.06);
  border-color: rgba(232, 217, 184, 0.38);
  color: #E8D9B8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — SITE VERSION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-hero {
  position: relative;
  padding: 78px 0 72px;
  overflow: hidden;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.mz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.mz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mz-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(201, 168, 76, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(16, 11, 3, 0.91) 0%, rgba(29, 21, 8, 0.84) 58%, rgba(16, 11, 3, 0.92) 100%);
}

.mz-hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: screen;
}

.mz-hero-lines img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

.mz-hero-content {
  max-width: 720px;
}

.mz-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.20);
  background: rgba(201, 168, 76, 0.055);
  color: rgba(232, 217, 184, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.035em;
  margin-bottom: 18px;
}

.mz-hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.75);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.30);
  flex: 0 0 auto;
}

.mz-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #E8D9B8;
  max-width: 760px;
}

.mz-hero-lead {
  margin: 18px 0 0;
  color: rgba(232, 217, 184, 0.70);
  font-size: 15px;
  line-height: 1.76;
  max-width: 610px;
}

.mz-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mz-hero-services {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}

.mz-hero-service {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(12, 8, 2, 0.30);
  color: rgba(196, 172, 122, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.mz-hero-panel {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(20, 14, 4, 0.48);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(10, 6, 0, 0.34);
  padding: 16px;
  overflow: hidden;
  position: relative;
}

.mz-hero-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(520px 210px at 24% 0%, rgba(201, 168, 76, 0.08), transparent 62%);
  pointer-events: none;
}

.mz-hero-panel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.13);
  background: rgba(10, 6, 0, 0.32);
}

.mz-hero-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.mz-hero-summary {
  position: relative;
  padding: 18px 6px 4px;
}

.mz-hero-summary-eyebrow {
  display: block;
  color: rgba(201, 168, 76, 0.72);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.mz-hero-summary-title {
  margin: 0;
  color: #E8D9B8;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.18;
}

.mz-hero-summary-text {
  margin: 10px 0 0;
  color: rgba(232, 217, 184, 0.64);
  font-size: 13px;
  line-height: 1.66;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — SITE VERSION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-about-section {
  padding-top: 84px;
}

.mz-about-head {
  max-width: 760px;
}

.mz-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: 28px;
}

.mz-about-story,
.mz-about-panel {
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(38, 28, 12, 0.46);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10, 6, 0, 0.20);
}

.mz-about-story {
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mz-about-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: rgba(201, 168, 76, 0.76);
  background: rgba(201, 168, 76, 0.055);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.mz-about-story-title {
  margin: 0 0 14px;
  color: #E8D9B8;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.18;
}

.mz-about-story p {
  margin: 0 0 12px;
  color: rgba(232, 217, 184, 0.70);
  font-size: 14px;
  line-height: 1.76;
}

.mz-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mz-about-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  color: rgba(196, 172, 122, 0.70);
  background: rgba(10, 6, 0, 0.24);
  font-size: 11px;
  font-weight: 600;
}

.mz-about-panel {
  overflow: hidden;
}

.mz-about-media {
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(10, 6, 0, 0.30);
}

.mz-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.mz-about-points {
  padding: 10px 18px 18px;
}

.mz-about-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.10);
}

.mz-about-point:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.mz-about-point-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: rgba(201, 168, 76, 0.76);
  background: rgba(10, 6, 0, 0.26);
  font-size: 12px;
  font-weight: 700;
}

.mz-about-point h4 {
  margin: 0 0 5px;
  color: #E8D9B8;
  font-size: 15px;
  font-weight: 700;
}

.mz-about-point p {
  margin: 0;
  color: rgba(232, 217, 184, 0.62);
  font-size: 13px;
  line-height: 1.58;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DIVISIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mz-div-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(52, 40, 20, 0.55);
  overflow: hidden;
  cursor: pointer;
  transition: .22s ease;
}

.mz-div-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.48);
  box-shadow: 0 18px 52px rgba(10, 6, 0, 0.28),
              0 0 0 1px rgba(201, 168, 76, 0.10);
  background: rgba(58, 44, 22, 0.68);
}

.mz-div-card:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

.mz-div-card-go {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(10, 6, 0, 0.60);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201, 168, 76, 0.80);
  font-size: 13px;
  z-index: 2;
  transition: .18s ease;
}

[dir="rtl"] .mz-div-card-go { right: auto; left: 14px; }

.mz-div-card:hover .mz-div-card-go {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.55);
}

.mz-div-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.mz-div-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.mz-div-card:hover .mz-div-card-media img {
  transform: scale(1.05);
}

.mz-div-card-body {
  padding: 16px;
}

.mz-div-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  background: rgba(10, 6, 0, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  margin-bottom: 12px;
}

.mz-div-card-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1.8) sepia(1) hue-rotate(10deg) saturate(0.8);
}

.mz-div-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: #E8D9B8;
  margin-bottom: 7px;
  line-height: 1.3;
}

.mz-div-card-body p {
  color: rgba(196, 172, 122, 0.68);
  font-size: 12px;
  line-height: 1.60;
}

.mz-div-card-pills {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mz-div-card-pills span {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(10, 6, 0, 0.30);
  color: rgba(196, 172, 122, 0.65);
  font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRESENCE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mz-pres-card {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(52, 40, 20, 0.55);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.mz-pres-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 200px at 20% 0%, rgba(201, 168, 76, 0.06), transparent 60%);
  pointer-events: none;
}

.mz-pres-card > * { position: relative; }

.mz-pres-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  margin-bottom: 16px;
}

.mz-pres-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.mz-pres-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.mz-pres-card-head strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--accent2);
}

.mz-pres-card-head span {
  color: rgba(196, 172, 122, 0.60);
  font-size: 11px;
  text-align: right;
}

[dir="rtl"] .mz-pres-card-head span { text-align: left; }

.mz-pres-list {
  display: grid;
  gap: 8px;
}

.mz-pres-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(10, 6, 0, 0.35);
}

.mz-pres-item-content b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #E8D9B8;
  margin-bottom: 3px;
}

.mz-pres-item-content p {
  color: rgba(196, 172, 122, 0.65);
  font-size: 12px;
  line-height: 1.50;
}

.mz-pres-tag {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent2);
  background: rgba(201, 168, 76, 0.08);
}

.mz-pres-tag--core   { border-color: rgba(201, 168, 76, 0.45); background: rgba(201, 168, 76, 0.14); }
.mz-pres-tag--active { border-color: rgba(100, 180, 100, 0.35); background: rgba(80, 160, 80, 0.10); color: #8DC88D; }
.mz-pres-tag--next   { border-color: rgba(100, 140, 200, 0.35); background: rgba(80, 120, 200, 0.10); color: #8AAED4; }
.mz-pres-tag--focus  { border-color: rgba(200, 120, 60, 0.35);  background: rgba(180, 100, 40, 0.10);  color: #D4956A; }
.mz-pres-tag--phase  { border-color: rgba(160, 130, 80, 0.28); background: rgba(140, 110, 60, 0.08); }

.mz-pres-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mz-pres-badges span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.05);
  color: rgba(196, 172, 122, 0.60);
  font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COFFEE & EDUCATION — feature split
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mz-feature-card {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(52, 40, 20, 0.55);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.mz-feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(550px 200px at 25% 0%, rgba(201, 168, 76, 0.07), transparent 60%);
  pointer-events: none;
}

.mz-feature-card > * { position: relative; }

.mz-feature-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
  margin-bottom: 18px;
}

.mz-feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.mz-feature-card:hover .mz-feature-media img {
  transform: scale(1.03);
}

.mz-feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #E8D9B8;
  margin-bottom: 10px;
  line-height: 1.25;
}

.mz-feature-lead {
  color: rgba(196, 172, 122, 0.70);
  font-size: 13px;
  line-height: 1.70;
}

.mz-feature-list {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mz-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(232, 217, 184, 0.80);
  line-height: 1.55;
}

.mz-feature-check {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(10, 6, 0, 0.40);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  margin-top: 2px;
}

.mz-feature-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.mz-contact-form-wrap {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(44, 34, 16, 0.65);
  padding: 28px;
}

.mz-contact-intro {
  color: rgba(196, 172, 122, 0.70);
  font-size: 14px;
  line-height: 1.70;
  margin-bottom: 4px;
}

.mz-contact-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mz-contact-note {
  margin-top: 12px;
  color: rgba(196, 172, 122, 0.50);
  font-size: 12px;
  line-height: 1.50;
}

.mz-contact-info {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(52, 40, 20, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mz-contact-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  flex: 0 0 auto;
}

.mz-contact-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.mz-contact-info-body {
  padding: 22px;
  flex: 1;
}

.mz-contact-info-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent2);
  display: block;
  margin-bottom: 8px;
}

.mz-contact-info-body > p {
  color: rgba(196, 172, 122, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.mz-contact-kv {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.mz-contact-kv-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(10, 6, 0, 0.30);
  font-size: 12px;
}

.mz-contact-kv-row dt {
  color: rgba(196, 172, 122, 0.65);
  font-weight: 500;
}

.mz-contact-kv-row dd {
  color: #E8D9B8;
  font-weight: 500;
  text-align: right;
}

[dir="rtl"] .mz-contact-kv-row dd { text-align: left; }

.mz-contact-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mz-contact-badges span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.05);
  color: rgba(196, 172, 122, 0.58);
  font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FX LAYER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mz101-fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.30;
}

.mz101-fx-layer svg {
  width: 100%; height: 100%;
  display: block;
}

.mz101-star { opacity: .55; }
.mz101-twinkle {
  transform-origin: center;
  animation: twinkleV2 12s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.12));
}

@keyframes twinkleV2 {
  0%,100% { opacity: .15; transform: scale(1); }
  45%     { opacity: .60; transform: scale(1.18); }
  75%     { opacity: .22; transform: scale(1.05); }
}

.mz101-t1 { animation-duration: 10.5s; animation-delay: -1.1s; }
.mz101-t2 { animation-duration: 13.2s; animation-delay: -3.7s; }
.mz101-t3 { animation-duration: 15.6s; animation-delay: -5.4s; }
.mz101-t4 { animation-duration: 12.4s; animation-delay: -2.2s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1080px) {
  .mz-about-layout,
  .mz-divisions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .mz-section { padding: 58px 0 46px; }
  .mz-section-head { margin-bottom: 14px; }
  .mz-section-title { font-size: 26px; }
  .mz-section-lead { font-size: 13px; line-height: 1.58; }

  .mz-hero { min-height: auto; padding: 42px 0 34px; }
  .mz-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .mz-hero-panel { max-width: 520px; }
  .mz-hero-title { font-size: 32px; }

  .mz-about-layout,
  .mz-contact-grid { grid-template-columns: 1fr; }

  .mz-divisions-grid,
  .mz-presence-grid,
  .mz-feature-split { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mz-about-layout { gap: 14px; margin-top: 18px; }
  .mz-about-story { padding: 20px; }
  .mz-about-media { height: 190px; }
  .mz-about-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 12px; }
  .mz-about-point { grid-template-columns: 1fr; gap: 8px; padding: 12px; border: 1px solid rgba(201, 168, 76, 0.10); border-radius: 16px; background: rgba(10, 6, 0, 0.18); }
  .mz-about-point:last-child { padding-bottom: 12px; }

  .mz-divisions-grid,
  .mz-presence-grid,
  .mz-feature-split { gap: 10px; }
  .mz-div-card { border-radius: 18px; }
  .mz-div-card-media,
  .mz-card-media,
  .mz-pres-card-media,
  .mz-feature-media { aspect-ratio: 4 / 3; margin-bottom: 10px; border-radius: 14px; }
  .mz-div-card-body,
  .mz-card,
  .mz-pres-card,
  .mz-feature-card { padding: 12px; border-radius: 18px; }
  .mz-div-card-icon,
  .mz-card-num { width: 32px; height: 32px; border-radius: 10px; margin-bottom: 8px; }
  .mz-div-card-go,
  .mz-card-go { width: 26px; height: 26px; top: 10px; right: 10px; }
  [dir="rtl"] .mz-div-card-go,
  [dir="rtl"] .mz-card-go { right: auto; left: 10px; }
  .mz-div-card-body h3,
  .mz-card-title,
  .mz-about-point h4 { font-size: 13px; line-height: 1.25; margin-bottom: 5px; }
  .mz-div-card-body p,
  .mz-card-text,
  .mz-pres-item-content p,
  .mz-about-point p { font-size: 11px; line-height: 1.42; }
  .mz-div-card-pills,
  .mz-card-pills,
  .mz-pres-badges { gap: 4px; margin-top: 8px; }
  .mz-div-card-pills span,
  .mz-card-pills span,
  .mz-pres-badges span { padding: 3px 7px; font-size: 10px; }
}

@media (max-width: 640px) {
  .mz-section { padding: 46px 0 36px; }
  .mz-hero { padding: 34px 0 30px; }
  .mz-hero-panel { display: none; }
  .mz-hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mz-hero-actions .mz-btn { width: 100%; padding-inline: 10px; font-size: 12px; }
  .mz-hero-services { gap: 5px; }

  .mz-divisions-grid,
  .mz-presence-grid,
  .mz-feature-split,
  .mz-about-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mz-contact-form-wrap { padding: 18px; }
  .mz-feature-card { padding: 12px; }
}

/* ── Plugin-inactive division card badge ── */
.mz-div-card-inactive-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(150, 120, 60, 0.30);
  background: rgba(10, 6, 0, 0.65);
  color: rgba(196, 172, 122, 0.50);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 3;
  pointer-events: none;
}

[dir="rtl"] .mz-div-card-inactive-badge {
  left: auto; right: 12px;
}
