/* ============================================================
   Master + Academy Section — Bar bio, pull quote, Academy
   ============================================================ */

.master-section {
  width: 100%;
  background: var(--gt-cream);
  padding: 96px 64px 104px;
  font-family: var(--font-sans);
  direction: rtl;
  position: relative;
  overflow: hidden;
}
.master-blob--a {
  width: 480px; height: 480px;
  background: var(--gt-pink-soft);
  top: -160px; right: -180px;
  opacity: 0.5;
}
.master-blob--b {
  width: 360px; height: 360px;
  background: var(--gt-pink);
  bottom: -120px; left: -120px;
  opacity: 0.18;
}

.master-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ma-row {
  display: grid;
  gap: 56px;
  align-items: center;
}
.ma-row--bar { grid-template-columns: 1.05fr 1fr; margin-bottom: 96px; }
.ma-row--academy { grid-template-columns: 1fr 1.05fr; }

.ma-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
}
.ma-tag--burgundy { background: var(--gt-burgundy); }
.ma-tag--ink { background: var(--gt-ink); }
.ma-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gt-pink);
}

.ma-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--gt-ink);
  margin: 20px 0 0;
  text-wrap: balance;
}
.ma-headline em { font-style: normal; color: var(--gt-burgundy); }

.ma-lede {
  font-weight: 500;
  color: var(--gt-body);
  margin: 16px 0 0;
  line-height: 1.5;
  text-wrap: pretty;
  font-size: 24px;
}

.ma-divider {
  height: 1px;
  background: var(--gt-line);
  margin: 28px 0;
}

.ma-body p {
  line-height: 1.65;
  color: var(--gt-ink);
  margin: 0;
  text-wrap: pretty;
  font-size: 20px;
}
.ma-body p + p { margin-top: 14px; }
.ma-body em {
  font-style: normal;
  color: var(--gt-burgundy-ink);
}

.ma-image {
  width: 100%;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 56px rgba(110, 28, 64, 0.22);
}
.ma-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ma-image--bar img { object-position: center 22%; }
.ma-image--academy img { object-position: center 60%; }

/* Pull quote */
.ma-quote {
  margin: 0 0 96px;
  background: linear-gradient(135deg, var(--gt-burgundy) 0%, var(--gt-burgundy-ink) 100%);
  border-radius: 28px;
  padding: 60px 72px 56px;
  position: relative;
  color: white;
  box-shadow: 0 28px 64px rgba(110, 28, 64, 0.32);
  overflow: hidden;
}
.ma-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% -10%, rgba(255,237,242,0.18), transparent 55%);
  pointer-events: none;
}
.ma-quote-mark {
  position: absolute;
  top: 12px;
  right: 48px;
  font-size: 240px;
  line-height: 0.9;
  font-weight: 800;
  color: var(--gt-pink);
  opacity: 0.28;
  font-family: Georgia, serif;
  pointer-events: none;
}
.ma-quote blockquote {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
  font-style: italic;
  color: white;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.ma-quote-cite {
  margin-top: 28px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ma-quote-cite::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gt-pink);
}
.ma-quote-cite span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gt-pink);
}

.ma-meta-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.ma-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 18px;
  border-right: 2px solid var(--gt-burgundy);
}
.ma-meta-item .label {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gt-muted);
  font-size: 13px;
}
.ma-meta-item .value {
  font-weight: 700;
  color: var(--gt-ink);
  font-size: 18px;
}

@media (max-width: 768px) {
  .master-section { padding: 56px 20px 64px; }
  .master-blob--a {
    width: 220px; height: 220px;
    top: -60px; right: -60px;
    opacity: 0.25;
    background: var(--gt-pink);
  }
  .master-blob--b { display: none; }

  .ma-row { grid-template-columns: 1fr; gap: 20px; }
  .ma-row--bar { margin-bottom: 0; }
  .ma-row--bar .ma-text-col { order: 1; }
  .ma-row--bar .ma-image-col { order: 2; }

  .ma-headline { font-size: 28px; margin: 14px 0 0; }
  .ma-lede { font-size: 20px; margin: 12px 0 22px; }
  .ma-body p { font-size: 19px; }
  .ma-divider { display: none; }

  .ma-image { height: 360px; border-radius: 18px; }
  .ma-image--academy { height: 320px; }

  .ma-quote {
    margin: 32px 0 40px;
    padding: 36px 26px 28px;
    border-radius: 20px;
  }
  .ma-quote-mark {
    top: 4px; right: 22px;
    font-size: 130px;
    opacity: 0.32;
  }
  .ma-quote blockquote { font-size: 18px; line-height: 1.5; }
  .ma-quote-cite { margin-top: 18px; gap: 10px; }
  .ma-quote-cite::before { width: 22px; }
  .ma-quote-cite span { font-size: 14px; }

  .ma-meta-row {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
}
