/*
 * Marketing Landing Pages global styles
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap");

html,
body {
  height: 100%;
}

html {
  background: #f5f1ea;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(246, 0, 0, 0.08), transparent 26rem),
    linear-gradient(180deg, #faf8f4 0%, #f5f1ea 100%);
  color: #111111;
  font-family: Inter, "Avenir Next", Roboto, Arial, sans-serif;
}

.ma-page,
.ma-page * {
  box-sizing: border-box;
}

.ma-page {
  --ma-black: #000000;
  --ma-white: #ffffff;
  --ma-red: #f60000;
  --ma-red-dark: #c40000;
  --ma-charcoal: #212121;
  --ma-gray: #d0cbcb;
  --ma-gold: #ecaf44;
  --ma-paper: #f8f4ed;
  --ma-shadow: 0 24px 56px rgba(17, 17, 17, 0.12);
  color: var(--ma-black);
}

.ma-page img {
  display: block;
  width: 100%;
  height: auto;
}

.ma-page a {
  color: inherit;
  text-decoration: none;
}

.ma-page h1,
.ma-page h2,
.ma-page h3,
.ma-page p {
  margin: 0;
}

.ma-page .ma-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.ma-page .ma-hero {
  padding: 28px 0 24px;
}

.ma-page .ma-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.ma-page .ma-hero-copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(9, 9, 9, 0.98), rgba(33, 33, 33, 0.94));
  color: var(--ma-white);
  box-shadow: var(--ma-shadow);
}

.ma-page .ma-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.ma-page .ma-logo {
  max-width: min(320px, 100%);
}

.ma-page .ma-mascot {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.ma-page .ma-kicker,
.ma-page .ma-eyebrow,
.ma-page .ma-note-label,
.ma-page .ma-social-label {
  color: var(--ma-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ma-page .ma-kicker {
  margin-bottom: 16px;
}

.ma-page h1,
.ma-page h2,
.ma-page h3 {
  font-family: Oswald, "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ma-page h1 {
  max-width: 10.5ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.93;
}

.ma-page .ma-lead {
  max-width: 36rem;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.ma-page .ma-cta-row,
.ma-page .ma-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ma-page .ma-cta-row {
  margin-top: 26px;
}

.ma-page .ma-btn {
  display: inline-flex;
  flex: 1 1 240px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.ma-page .ma-btn:hover {
  transform: translateY(-1px);
}

.ma-page .ma-btn-primary {
  background: var(--ma-red);
  color: var(--ma-white);
}

.ma-page .ma-btn-primary:hover {
  background: var(--ma-red-dark);
}

.ma-page .ma-btn-secondary {
  background: var(--ma-white);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ma-black);
}

.ma-page .ma-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.ma-page .ma-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ma-page .ma-chip {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ma-page .ma-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  background: #d7d0c7;
  box-shadow: var(--ma-shadow);
}

.ma-page .ma-hero-media > img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.ma-page .ma-hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 290px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(10px);
  color: var(--ma-white);
}

.ma-page .ma-hero-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
}

.ma-page .ma-hero-note p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.ma-page .ma-section {
  padding: 28px 0;
}

.ma-page .ma-section-head {
  max-width: 780px;
}

.ma-page .ma-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.ma-page .ma-section-head p:last-child {
  margin-top: 12px;
  color: #494949;
  font-size: 1.02rem;
  line-height: 1.72;
}

.ma-page .ma-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.ma-page .ma-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ma-page .ma-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.ma-page .ma-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ma-page .ma-card-copy {
  padding: 18px;
}

.ma-page .ma-card-copy h3 {
  font-size: 1.55rem;
  line-height: 0.98;
}

.ma-page .ma-card-copy p {
  margin-top: 10px;
  color: #545454;
  line-height: 1.65;
}

.ma-page .ma-proof {
  color: var(--ma-white);
}

.ma-page .ma-proof .ma-shell {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #090909 0%, #1f1f1f 100%);
  box-shadow: var(--ma-shadow);
}

.ma-page .ma-section-head-dark p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.ma-page .ma-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ma-page .ma-proof-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.ma-page .ma-proof-card h3 {
  font-size: 1.4rem;
  line-height: 1;
}

.ma-page .ma-proof-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.68;
}

.ma-page .ma-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ma-page .ma-step {
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
}

.ma-page .ma-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ma-red);
  color: var(--ma-white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ma-page .ma-step h3 {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.ma-page .ma-step p {
  margin-top: 10px;
  color: #545454;
  line-height: 1.66;
}

.ma-page .ma-profile-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.ma-page .ma-profile-media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--ma-shadow);
}

.ma-page .ma-profile-media img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.ma-page .ma-profile-copy {
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 239, 0.96));
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.ma-page .ma-profile-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.ma-page .ma-profile-copy p:last-of-type {
  margin-top: 14px;
  color: #4c4c4c;
  font-size: 1.02rem;
  line-height: 1.72;
}

.ma-page .ma-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: #303030;
  font-weight: 600;
}

.ma-page .ma-cta-row-inline {
  margin-top: 22px;
}

.ma-page .ma-cta-band .ma-shell {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(28, 28, 28, 0.96));
  color: var(--ma-white);
  box-shadow: var(--ma-shadow);
}

.ma-page .ma-cta-band-head {
  max-width: 720px;
}

.ma-page .ma-cta-band-head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.ma-page .ma-cta-actions-band {
  margin-top: 22px;
}

.ma-page .ma-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.ma-page .ma-social-card {
  display: block;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.ma-page .ma-social-card:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 0, 0, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.ma-page .ma-social-card strong,
.ma-page .ma-social-card span {
  display: block;
}

.ma-page .ma-social-card strong {
  margin-top: 10px;
  font-family: Oswald, "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.ma-page .ma-social-card span:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.ma-page .ma-card-link,
.ma-page .ma-gallery-card {
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.ma-page .ma-card-link:hover,
.ma-page .ma-gallery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 0, 0, 0.22);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.12);
}

.ma-page .ma-card-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  align-items: center;
}

.ma-page .ma-card-badge,
.ma-page .ma-card-link-note,
.ma-page .ma-category-stat,
.ma-page .ma-back-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ma-page .ma-card-badge {
  color: var(--ma-red);
}

.ma-page .ma-card-link-note {
  color: #676767;
}

.ma-page .ma-chip[href] {
  transition: border-color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.ma-page .ma-chip[href]:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.ma-page .ma-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #4e4e4e;
}

.ma-page .ma-back-link::before {
  content: "<";
  color: var(--ma-red);
  font-size: 0.9rem;
}

.ma-page .ma-lookbook-hero {
  padding-bottom: 8px;
}

.ma-page .ma-lookbook-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 26px;
}

.ma-page .ma-lookbook-media > img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.ma-page .ma-category-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ma-page .ma-category-stat {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.ma-page .ma-gallery-card-copy p {
  margin-top: 10px;
}

.ma-page .ma-spotlight-stack {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.ma-page .ma-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.ma-page .ma-spotlight-copy h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.ma-page .ma-spotlight-copy > p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.ma-page .ma-spotlight-detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ma-page .ma-spotlight-detail-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.ma-page .ma-spotlight-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ma-gold);
  transform: translateY(-50%);
}

.ma-page .ma-spotlight-media {
  display: grid;
  gap: 14px;
}

.ma-page .ma-spotlight-main,
.ma-page .ma-spotlight-thumb {
  overflow: hidden;
  border-radius: 20px;
}

.ma-page .ma-spotlight-main img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ma-page .ma-spotlight-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ma-page .ma-spotlight-thumb img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ma-page .ma-cross-link-grid {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .ma-page .ma-grid-three,
  .ma-page .ma-proof-grid,
  .ma-page .ma-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-page .ma-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-page .ma-profile-grid {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .ma-page .ma-lookbook-hero-grid,
  .ma-page .ma-spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .ma-page .ma-hero-grid,
  .ma-page .ma-profile-grid,
  .ma-page .ma-lookbook-hero-grid,
  .ma-page .ma-spotlight {
    grid-template-columns: 1fr;
  }

  .ma-page .ma-hero-copy,
  .ma-page .ma-proof .ma-shell,
  .ma-page .ma-profile-copy,
  .ma-page .ma-cta-band .ma-shell,
  .ma-page .ma-spotlight {
    padding: 24px;
  }

  .ma-page .ma-hero-media > img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .ma-page .ma-shell {
    width: min(100%, calc(100% - 20px));
  }

  .ma-page .ma-hero {
    padding-top: 16px;
  }

  .ma-page .ma-brand-row {
    align-items: flex-start;
  }

  .ma-page .ma-logo {
    max-width: 240px;
  }

  .ma-page .ma-mascot {
    width: 52px;
    height: 52px;
  }

  .ma-page h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .ma-page .ma-btn {
    flex-basis: 100%;
  }

  .ma-page .ma-hero-note {
    position: static;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .ma-page .ma-grid-three,
  .ma-page .ma-proof-grid,
  .ma-page .ma-process,
  .ma-page .ma-social-grid {
    grid-template-columns: 1fr;
  }

  .ma-page .ma-card-copy,
  .ma-page .ma-step,
  .ma-page .ma-social-card {
    padding: 16px;
  }

  .ma-page .ma-spotlight-thumb-grid {
    grid-template-columns: 1fr;
  }

  .ma-page .ma-back-link {
    margin-bottom: 14px;
  }
}

.fbmp-page {
  padding-bottom: 32px;
}

.fbmp-page .ma-logo {
  max-width: min(360px, 100%);
}

.fbmp-page .ma-hero-copy h1 {
  max-width: 11.5ch;
}

.fbmp-page .ma-hero-note span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.fbmp-page .ma-btn {
  text-align: center;
}

.fbmp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fbmp-breadcrumbs a:hover {
  color: #f60000;
}

.fbmp-breadcrumb-current {
  color: #111111;
}

.fbmp-breadcrumb-sep {
  color: rgba(17, 17, 17, 0.35);
}

.fbmp-section {
  position: relative;
}

.fbmp-section-muted {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.fbmp-section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.fbmp-section-head p:not(.ma-kicker) {
  margin-top: 14px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}

.fbmp-grid {
  display: grid;
  gap: 20px;
}

.fbmp-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fbmp-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fbmp-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.fbmp-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.fbmp-card-media {
  position: relative;
}

.fbmp-card-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fbmp-card-media-meta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.fbmp-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
}

.fbmp-card-body h3 {
  font-size: 1.9rem;
  line-height: 0.98;
}

.fbmp-card-body p {
  color: rgba(17, 17, 17, 0.76);
  line-height: 1.68;
}

.fbmp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fbmp-card-action {
  margin-top: auto;
  color: #f60000;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbmp-card-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.fbmp-card-thumbs img {
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fbmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbmp-badge-muted {
  background: rgba(236, 175, 68, 0.92);
  color: #111111;
}

.fbmp-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.fbmp-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbmp-category-pill.is-current,
.fbmp-category-pill:hover {
  border-color: rgba(246, 0, 0, 0.32);
  background: rgba(246, 0, 0, 0.08);
  color: #111111;
}

.fbmp-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.fbmp-detail-copy,
.fbmp-detail-panel,
.fbmp-contact-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.fbmp-detail-copy {
  padding: 26px;
}

.fbmp-detail-copy p {
  margin-top: 14px;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.78;
}

.fbmp-copy-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.7;
}

.fbmp-copy-list li + li {
  margin-top: 10px;
}

.fbmp-detail-panel {
  padding: 24px;
  position: sticky;
  top: 24px;
}

.fbmp-detail-panel .ma-btn {
  margin-top: 22px;
}

.fbmp-gallery-launch,
.fbmp-gallery-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.fbmp-gallery-launch img {
  transition: transform 180ms ease;
}

.fbmp-gallery-launch:hover img,
.fbmp-gallery-tile:hover img {
  transform: scale(1.02);
}

.fbmp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fbmp-gallery-tile {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.fbmp-gallery-tile img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fbmp-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 24px;
}

.fbmp-contact-profile {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.fbmp-contact-photo {
  width: 132px;
  height: 132px;
  border-radius: 24px;
  object-fit: cover;
}

.fbmp-contact-copy {
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.76);
  line-height: 1.72;
}

.fbmp-contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.fbmp-contact-links a {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbmp-contact-links a:hover {
  color: #f60000;
}

.fbmp-cta-band {
  padding-top: 8px;
}

.fbmp-cta-band-shell {
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(9, 9, 9, 0.98), rgba(33, 33, 33, 0.94));
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.14);
  color: #ffffff;
}

.fbmp-band-copy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.fbmp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fbmp-empty-state {
  padding: 40px 0 24px;
}

.fbmp-empty-state p:not(.ma-kicker) {
  margin-top: 14px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}

.fbmp-lightbox-open {
  overflow: hidden;
}

.fbmp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.fbmp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.fbmp-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1160px, calc(100% - 24px));
  height: min(90vh, 860px);
  margin: 5vh auto 0;
  gap: 16px;
}

.fbmp-lightbox-stage {
  margin: 0;
  text-align: center;
  color: #ffffff;
}

.fbmp-lightbox-stage img {
  max-width: 100%;
  max-height: calc(90vh - 84px);
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.fbmp-lightbox-stage figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fbmp-lightbox-close,
.fbmp-lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.fbmp-lightbox-close {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 2rem;
  line-height: 1;
  transform: rotate(45deg);
}

.fbmp-lightbox-nav {
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1120px) {
  .fbmp-category-grid,
  .fbmp-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .fbmp-detail-layout,
  .fbmp-contact-card {
    grid-template-columns: 1fr;
  }

  .fbmp-detail-panel {
    position: static;
  }

  .fbmp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fbmp-category-grid,
  .fbmp-project-grid,
  .fbmp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fbmp-contact-profile {
    grid-template-columns: 1fr;
  }

  .fbmp-contact-photo {
    width: 112px;
    height: 112px;
  }

  .fbmp-lightbox-dialog {
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    gap: 12px;
  }

  .fbmp-lightbox-nav {
    display: none;
  }
}
