/* ─────────────────────────────────────────────────────────
   Meet the Team  (/meet-the-team/)
   ───────────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────── */
.mtt-hero {
  position: relative;
  padding: 96px 48px 104px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,44,85,0.18) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,44,85,0.08) 0%, transparent 50%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.mtt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.mtt-hero-watermark {
  position: absolute;
  bottom: -34px;
  right: -24px;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.mtt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.mtt-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}

.mtt-hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--white);
}

.mtt-hero-h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mtt-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0;
}

/* ── SHARED SECTION HEADERS ────────────────────────── */
.mtt-section-header {
  margin-bottom: 56px;
  max-width: 720px;
}

.mtt-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.mtt-h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--black);
}

.mtt-h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

/* ── LEADERSHIP ────────────────────────────────────── */
.mtt-leaders {
  padding: 96px 48px;
  background: var(--white);
}

.mtt-leaders-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards stacked vertically — horizontal layout inside each card.
   Mirrors `.leadership-box` from the live theme. */
.mtt-leaders-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mtt-leader { display: block; }

.mtt-leader-link-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #FBFBFB;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.3s, background 0.3s;
}

.mtt-leader-link-wrap:hover {
  border-color: var(--red);
}

.mtt-leader-photo {
  position: relative;
  width: 210px;
  aspect-ratio: auto;
  background: transparent;
  overflow: visible;
  flex-shrink: 0;
}

.mtt-leader-photo img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
}

.mtt-leader-body {
  flex: 1;
  min-width: 0;
  width: calc(100% - 210px);
  padding: 0 0 0 30px;
}

.mtt-leader-rule { display: none; }


.mtt-leader-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--black);
}

.mtt-leader-role {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
  margin: 0 0 12px;
}

.mtt-leader-bio {
  font-size: 16px;
  line-height: 28px;
  color: var(--black);
  margin: 0;
  font-weight: 400;
}

.mtt-leader-bio p {
  margin: 0 0 12px;
}

.mtt-leader-bio p:last-child { margin-bottom: 0; }

.mtt-leader-link { display: none; }

.mtt-leader-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.22s, color 0.22s;
}

.mtt-leader-readmore svg { width: 13px; height: 13px; transition: transform 0.22s; }

.mtt-leader-link-wrap:hover .mtt-leader-readmore {
  color: var(--black);
  gap: 12px;
}

.mtt-leader-link-wrap:hover .mtt-leader-readmore svg { transform: translateX(3px); }


/* ── TEAM GRID ─────────────────────────────────────── */
.mtt-team {
  padding: 96px 48px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.mtt-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mtt-team-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.mtt-member {
  background: transparent;
  border: none;
  transition: transform 0.22s;
  text-align: center;
}

.mtt-member:hover { transform: translateY(-3px); }

.mtt-member-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mtt-member-photo {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,44,85,0.06), rgba(0,0,0,0.04));
  overflow: hidden;
}

.mtt-member-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.mtt-member:hover .mtt-member-photo img {
  transform: scale(1.05);
}

.mtt-member-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 18px 0 4px;
  color: var(--black);
  text-align: center;
}

.mtt-member-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  text-align: center;
}

/* ── BOTTOM CTA ────────────────────────────────────── */
.mtt-cta {
  padding: 96px 48px 104px;
  background: var(--black);
  color: var(--white);
}

.mtt-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.mtt-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}

.mtt-cta-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--white);
}

.mtt-cta-h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.mtt-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
}

.mtt-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.mtt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s, color 0.22s;
  box-shadow: 0 10px 26px rgba(255,44,85,0.22);
}

.mtt-cta-btn svg { width: 14px; height: 14px; transition: transform 0.22s; }

.mtt-cta-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.mtt-cta-btn:hover svg { transform: translateX(4px); }

.mtt-cta-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: none;
}

.mtt-cta-btn--ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mtt-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .mtt-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .mtt-leader-photo { width: 160px; }
  .mtt-leader-body { width: calc(100% - 160px); padding: 0 0 0 20px; }
  .mtt-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .mtt-hero { padding: 64px 24px 72px; }
  .mtt-hero-watermark { display: none; }
  .mtt-leaders { padding: 64px 24px; }
  .mtt-team { padding: 64px 24px; }
  .mtt-cta { padding: 64px 24px 72px; }
  .mtt-leader-link-wrap { padding: 20px; }
  .mtt-leader-photo { width: 100%; max-width: 220px; margin: 0 auto 16px; }
  .mtt-leader-body { width: 100%; padding: 0; text-align: center; }
  .mtt-leader-readmore { justify-content: center; }
  .mtt-team-grid { grid-template-columns: 1fr; gap: 18px; max-width: 360px; margin: 0 auto; }
  .mtt-cta-actions { width: 100%; flex-direction: column; }
  .mtt-cta-btn { width: 100%; justify-content: center; }
}
