/* =========================================
   JamenTaylor / Meet The Team
   ========================================= */

/* ---------- Hero ---------- */
.mtt-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--brand-black);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.mtt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.mtt-hero-content {
  position: relative;
  z-index: 1;
  animation: mttFadeUp .8s ease-out;
}
.mtt-hero-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.25);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--brand-gold-light);
}
.mtt-hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.mtt-hero h1 span {
  display: block;
  color: var(--brand-gold-light);
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-style: italic;
  margin-top: .15em;
}
.mtt-hero p {
  font-size: clamp(1rem, .5vw + .9rem, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
  opacity: .75;
  line-height: 1.75;
  font-weight: 300;
}

@keyframes mttFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Ambassador Grid Section ---------- */
.mtt-grid-section {
  padding: 80px 0 100px;
  background: var(--brand-cream);
}
.mtt-grid-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.mtt-grid-section .section-header h2 {
  font-size: clamp(1.8rem, 2.5vw + .8rem, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.mtt-grid-section .section-header p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Ambassador Card ---------- */
.ambassador-card {
  background: #fff;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--brand-gold);
}
.ambassador-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Avatar */
.ambassador-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ambassador-avatar .avatar-initials {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  z-index: 1;
}
.ambassador-avatar .avatar-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Card body */
.ambassador-info {
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ambassador-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: .02em;
}
.ambassador-info .discount-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .65rem;
  font-weight: 500;
}

/* Coupon code badge */
.code-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-black);
  color: #fff;
  padding: 10px 20px;
  font-family: 'Inter', monospace;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  margin-top: auto;
  user-select: none;
  -webkit-user-select: none;
}
.code-badge:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
}
.code-badge:active { transform: scale(.97); }
.code-badge .copy-icon {
  width: 14px;
  height: 14px;
  opacity: .8;
  flex-shrink: 0;
}
.code-badge.copied {
  background: #059669;
}

/* ---------- Toast ---------- */
.mtt-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--brand-black);
  color: var(--brand-gold-light);
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity .3s ease, transform .3s ease;
}
.mtt-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- CTA Section ---------- */
.mtt-cta {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.mtt-cta h2 {
  font-size: clamp(1.8rem, 2.5vw + .8rem, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: .06em;
}
.mtt-cta p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn-hero {
  background: var(--brand-black);
  color: #fff !important;
  padding: 14px 36px;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
.btn-hero:hover {
  background: var(--brand-gold);
  color: var(--brand-black) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .mtt-hero { padding: 140px 0 80px; }
  .ambassador-avatar .avatar-initials { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  .mtt-hero { padding: 120px 0 70px; }
  .mtt-grid-section { padding: 60px 0 80px; }
  .ambassador-avatar .avatar-initials { font-size: 2.2rem; }
}
@media (max-width: 576px) {
  .mtt-hero { padding: 110px 0 60px; }
  .mtt-grid-section { padding: 50px 0 70px; }
  .ambassador-info { padding: 1.25rem 1rem 1.5rem; }
  .code-badge { font-size: .78rem; padding: 9px 16px; }
}
