/* ==========================================================================
   MODEL [X] MASTER STYLESHEET

   Combined from:
   - Landing / shared foundation
   - About
   - Talent
   - Studio
   - Creative Services
   - Journal

   The landing stylesheet remains the shared foundation. Page-specific rules
   follow it. Duplicate footer-contact rules were removed, and current-page
   navigation states were scoped to their corresponding page using :has().
   ========================================================================== */

/* ==============================================================
   MODEL [X] LANDING PAGE V3
   Layout based on the supplied redesign.

   CSS ORGANIZATION
   01. Design variables
   02. Reset and global rules
   03. Shared containers
   04. Hero structure
   05. Header and navigation
   06. Hero content
   07. Decision cards
   08. Talent board and studio
   09. Image cards and hover color
   10. Featured story
   11. Founders
   12. Unified footer
   13. Hover and focus states
   14. Responsive layout
   ============================================================== */


/* ==============================================================
   01. DESIGN VARIABLES
   Change colors, fonts, and overall page width here.
   ============================================================== */
:root {
  --mx-cream: #f4efe7;
  --mx-cream-light: #fbf8f2;
  --mx-charcoal: #111313;
  --mx-charcoal-soft: #1a1d1d;
  --mx-black: #080909;
  --mx-white: #ffffff;

  --mx-oxblood: #862d30;
  --mx-oxblood-bright: #b23b3e;

  --mx-gray: #79746d;
  --mx-gray-light: #c8c2b9;
  --mx-gray-dark: #4d4944;

  --mx-light-line: rgba(17, 19, 19, 0.18);
  --mx-dark-line: rgba(255, 255, 255, 0.14);

  --mx-serif: "Cormorant Garamond", Georgia, serif;
  --mx-sans: "Inter", Arial, sans-serif;
  --mx-condensed: "Oswald", "Arial Narrow", sans-serif;

  --mx-max-width: 1440px;
  --mx-page-pad: clamp(22px, 4vw, 58px);

  --mx-fast: 180ms ease;
  --mx-medium: 320ms ease;
}


/* ==============================================================
   02. RESET AND GLOBAL RULES
   ============================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mx-cream);
  color: var(--mx-charcoal);
  font-family: var(--mx-sans);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ==============================================================
   03. SHARED CONTAINERS
   Every major page section uses .mx-container.
   ============================================================== */
.mx-page {
  width: 100%;
  min-height: 100vh;
}

.mx-container {
  width: min(100%, var(--mx-max-width));
  margin: 0 auto;
  padding-left: var(--mx-page-pad);
  padding-right: var(--mx-page-pad);
}

.mx-text-link {
  display: inline-block;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}



/* ==============================================================
   04. HERO STRUCTURE
   Hero image is placed behind all hero content.
   There is NO gradient or transparency over the image.
   ============================================================== */
.mx-hero {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
}

.mx-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mx-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* HERO IMAGE POSITION
     First value = left/right
     Second value = up/down */
  object-position: 70% 18%;
}


/* ==============================================================
   05. FIXED FLOATING HEADER AND NAVIGATION

   The header must remain outside every hero section in the HTML.
   Hero sections use overflow/isolation, which can trap a fixed
   element inside their stacking context.
   ============================================================== */
.mx-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10000;
  transform: translateX(-50%);

  width: min(100%, var(--mx-max-width));
  min-height: 94px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 32px;

  /* The empty parts of the full-width header do not block the page. */
  pointer-events: none;
}

.mx-header-logo,
.mx-main-nav,
.mx-location {
  pointer-events: auto;
}

.mx-header-logo {
  justify-self: start;
  align-self: start;
  margin-top: 6px;

  font-family: var(--mx-serif);
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.mx-main-nav {
  position: relative;
  z-index: 10001;

  justify-self: center;
  align-self: start;

  display: grid;
  grid-template-columns: repeat(7, 150px);
  width: max-content;
  margin-top: 38px;

  background: var(--mx-cream-light);
  border: 1px solid rgba(17, 19, 19, 0.14);
  box-shadow: 0 12px 32px rgba(8, 9, 9, 0.75);
}

.mx-main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 20px;
  padding: 0 10px;

  color: var(--mx-charcoal);
  background: var(--mx-cream-light);

  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  border-right: 1px solid rgba(17, 19, 19, 0.12);
  transition: color var(--mx-fast), background-color var(--mx-fast);
}

.mx-main-nav a:last-child {
  border-right: 0;
}

.mx-main-nav a:hover {
  color: var(--mx-oxblood-bright);
  background: #eecc9d;
}

.mx-location {
  justify-self: end;
  align-self: start;
  margin-top: 16px;

  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* ==============================================================
   06. HERO CONTENT
   ============================================================== */
.mx-hero-content {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mx-hero-copy {
  max-width: 780px;
  padding: 70px 0 150px;
}

.mx-eyebrow {
  margin: 0 0 20px;
  color: var(--mx-oxblood);
  font-family: var(--mx-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mx-hero-tags {
  margin: 0 0 12px;
  display: flex;
  gap: 18px;
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-hero-title {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(6rem, 12vw, 11.8rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.mx-hero-title span {
  color: var(--mx-oxblood);
  font-size: 2em; /* ex. makes the [X] 15% larger */
}

.mx-hero-description {
  max-width: 430px;
  margin: 34px 55px 0;
  font-size: clamp(1.40rem, 1.45vw, 1.5rem);
  font-family: var(--mx-condensed);
  line-height: 1.48;
}

.mx-hero-side-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  margin-top: 250px; /* pushes the entire note lower */
  margin-right: 8px;

  color: var(--mx-charcoal);
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-hero-side-note i {
  width: 86px;
  height: 1px;
  margin-top: 10px;
  background: var(--mx-oxblood);
}


/* ==============================================================
   07. PRIMARY DECISION CARDS
   Hover movement signals selection.
   ============================================================== */
.mx-decision-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 32px;
}

.mx-decision-card {
  position: relative;
  min-height: 282px;
  padding: 28px 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(17, 19, 19, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--mx-medium),
    box-shadow var(--mx-medium);
}

.mx-decision-card--dark {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-decision-card--light {
  color: var(--mx-charcoal);
  background: var(--mx-cream);
}

.mx-decision-index {
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mx-decision-main {
  width: 100%;
  padding-top: 20px;
}

.mx-decision-main h2 {
  margin: 0;
  font-family: var(--mx-condensed);
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.mx-decision-label {
  margin: 24px 0 4px;
  font-family: var(--mx-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mx-decision-meta {
  margin: 0;
  font-size: 0.76rem;
  opacity: 0.74;
}

.mx-decision-arrow {
  color: var(--mx-oxblood-bright);
  font-size: clamp(2.5rem, 4vw, 4rem);
}


/* ==============================================================
   08. TALENT BOARD + STUDIO studio
   ============================================================== */
.mx-board-section {
  color: var(--mx-white);
  background: var(--mx-black);
}

.mx-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--mx-dark-line);
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-board-panel {
  padding-top: 16px;
  padding-bottom: 20px;
}

.mx-board-panel:first-child {
  padding-right: 20px;
  border-right: 1px solid var(--mx-dark-line);
}

.mx-board-panel:last-child {
  padding-left: 20px;
}

.mx-board-heading {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-board-heading > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mx-board-heading h2 {
  margin: 0;
  font-family: var(--mx-condensed);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mx-board-heading span {
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mx-board-heading > a {
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mx-talent-grid,
.mx-service-grid {
  display: grid;
  margin-top: 14px;
}

.mx-talent-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mx-service-grid {
  grid-template-columns: repeat(3, 1fr);
}


/* ==============================================================
   09. IMAGE CARDS
   Monotone by default.
   Return to full color on hover.
   ============================================================== */
.mx-image-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--mx-dark-line);
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-image-card:first-child {
  border-left: 1px solid var(--mx-dark-line);
}

.mx-card-label {
  min-height: 36px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mx-charcoal-soft);
  border-top: 1px solid var(--mx-dark-line);
}

.mx-card-label span,
.mx-card-label strong {
  font-family: var(--mx-condensed);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mx-card-label span {
  color: var(--mx-gray-light);
}

.mx-image-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(100%) saturate(0%);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}

.mx-service-grid .mx-image-card img {
  aspect-ratio: 4 / 5;
}

.mx-card-plus {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--mx-white);
  background: rgba(10, 11, 11, 0.84);
  border: 1px solid var(--mx-dark-line);
}


/* ==============================================================
   10. FEATURED STORY
   ============================================================== */
.mx-featured-story {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-featured-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-featured-copy {
  padding: 28px 28px 34px 0;
}

.mx-featured-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mx-featured-topline a {
  color: var(--mx-oxblood-bright);
}

.mx-featured-copy h2 {
  margin: 18px 0 4px;
  font-family: var(--mx-serif);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
}

.mx-featured-credit {
  margin: 0 0 20px;
  color: var(--mx-gray-light);
  font-size: 0.76rem;
}

.mx-featured-copy > p:not(.mx-featured-credit) {
  max-width: 330px;
  color: var(--mx-gray-light);
  font-size: 0.82rem;
}

.mx-featured-image {
  min-height: 300px;
}

.mx-featured-image img {
  height: 100%;
  object-fit: cover;
}


/* ==============================================================
   11. FOUNDERS
   ============================================================== */
.mx-founders-section {
  background: var(--mx-cream-light);
}

.mx-founders-grid {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 640px);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.mx-founders-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
}

.mx-founders-label {
  margin: 0;
  color: var(--mx-oxblood);
  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-founders-statement {
  margin: 12px 0 18px;
  font-family: var(--mx-serif);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  line-height: 1.15;
}


/* ==============================================================
   12. UNIFIED FOOTER
   Replaces the previous dark information footer,
   light primary footer, and bottom footer bar.

   The large [X] is live text, not an image, so it remains crisp.
   ============================================================== */
.mx-footer {
  color: var(--mx-gray-light);
  background: var(--mx-charcoal);
  font-family: var(--mx-sans);
}

/* MAIN FOOTER GRID */
.mx-footer-main {
  padding-top: 24px;
  padding-bottom: 24px;

  display: grid;
  grid-template-columns:
    minmax(170px, 1.15fr)
    repeat(5, minmax(105px, 0.72fr))
    minmax(250px, 1.35fr);

  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

/* LARGE CRISP [X] MARK */
.mx-footer-mark {
  min-height: 160px;
  display: flex;
  align-items: center;
}

.mx-footer-mark span {
  display: block;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.08em;

  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FOOTER LINK COLUMNS */
.mx-footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.mx-footer-column h2,
.mx-footer-newsletter h2 {
  margin: 0 0 5px;
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mx-footer-column a {
  color: var(--mx-gray-dark);
  font-size: 0.88rem;
  transition: color var(--mx-fast);
}

.mx-footer-column a:hover {
  color: var(--mx-oxblood-bright);
}

/* NEWSLETTER PANEL */
.mx-footer-newsletter {
  padding: 26px 24px;
  border: 1px solid var(--mx-dark-line);
}

.mx-footer-newsletter h2 {
  color: var(--mx-oxblood-bright);
}

.mx-footer-newsletter p {
  margin: 14px 0 22px;
  color: var(--mx-gray-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mx-footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
}

.mx-footer-form input {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  color: var(--mx-white);
  background: transparent;
  border: 1px solid var(--mx-dark-line);
  outline: none;
}

.mx-footer-form input::placeholder {
  color: var(--mx-gray);
}

.mx-footer-form button {
  border: 0;
  color: var(--mx-white);
  background: var(--mx-oxblood-bright);
  cursor: pointer;
  font-size: 1.3rem;
  transition:
    background-color var(--mx-fast),
    transform var(--mx-fast);
}

.mx-footer-form button:hover {
  background: #c8484c;
  transform: translateX(3px);
}


/* ==============================================================
   FOOTER CONTACT BOX
   ============================================================== */
.mx-footer-contact-details {
  margin: 14px 0 0;
  font-style: normal;
}

.mx-footer-contact-details p {
  margin: 0 0 18px;
  color: var(--mx-gray-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mx-footer-contact-details p:last-child {
  margin-bottom: 0;
}

.mx-footer-contact-details a {
  color: var(--mx-gray-light);
  transition: color var(--mx-fast);
}

.mx-footer-contact-details a:hover {
  color: var(--mx-oxblood-bright);
}



/* LEGAL BAR */
.mx-footer-legal {
  background: var(--mx-black);
  border-top: 1px solid var(--mx-dark-line);
}

.mx-footer-legal-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.mx-footer-legal p {
  margin: 0;
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mx-footer-legal nav {
  display: flex;
  gap: 34px;
}

.mx-footer-legal nav a {
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--mx-fast);
}

.mx-footer-legal nav a:hover {
  color: var(--mx-oxblood-bright);
}

.mx-footer-small-mark {
  justify-self: end;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: 1.6rem;
  line-height: 1;

  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}


/* ==============================================================
   13. HOVER AND FOCUS STATES
   ============================================================== */
/* Decision box movement */
.mx-decision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* Monochrome to full color */
.mx-image-card:hover img {
  filter: grayscale(0%) saturate(100%);
  transform: scale(1.03);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--mx-oxblood-bright);
  outline-offset: 4px;
}


/* ==============================================================
   14. RESPONSIVE LAYOUT
   ============================================================== */
@media (max-width: 1100px) {
  .mx-header {
    grid-template-columns: 1fr;
  }

  .mx-header-logo,
  .mx-location {
    display: none;
  }

  .mx-main-nav {
    justify-self: center;
    grid-template-columns: repeat(6, minmax(105px, 1fr));
    width: min(calc(100% - (2 * var(--mx-page-pad))), 900px);
  }

  .mx-main-nav a {
    width: auto;
  }

  .mx-footer-main {
    grid-template-columns:
      minmax(170px, 1fr)
      repeat(3, minmax(120px, 1fr));
  }

  .mx-footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {

  .mx-hero {
    min-height: auto;
  }

  .mx-header {
    min-height: auto;
    padding: 0 var(--mx-page-pad);
  }

  .mx-main-nav {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 14px;
  }

  .mx-main-nav a {
    width: auto;
    min-height: 38px;
    border-bottom: 1px solid rgba(17, 19, 19, 0.12);
  }

  .mx-hero-content {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .mx-hero-copy {
    padding: 140px 0 90px;
  }

  .mx-hero-side-note {
    display: none;
  }

  .mx-hero-title {
    white-space: normal;
    font-size: clamp(5.2rem, 18vw, 8rem);
  }

  .mx-hero-image img {
    object-position: 63% 18%;
  }

  .mx-decision-grid,
  .mx-board-grid {
    grid-template-columns: 1fr;
  }

  .mx-board-panel:first-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--mx-dark-line);
  }

  .mx-board-panel:last-child {
    padding-left: 0;
  }

  .mx-featured-grid {
    grid-template-columns: 1fr;
  }

  .mx-featured-copy {
    padding-right: 0;
  }

  .mx-founders-grid {
    grid-template-columns: minmax(160px, 240px) 1fr;
  }

  .mx-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-footer-mark,
  .mx-footer-newsletter {
    grid-column: 1 / -1;
  }

  .mx-footer-mark {
    min-height: auto;
  }

  .mx-footer-legal-inner {
    padding-top: 18px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .mx-footer-legal nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .mx-footer-small-mark {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .mx-main-nav {
    grid-template-columns: repeat(2, 1fr);
  }


  .mx-decision-card {
    min-height: 220px;
    padding: 24px;
  }

  .mx-decision-main h2 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .mx-talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-service-grid {
    grid-template-columns: 1fr;
  }

  .mx-founders-grid,
  .mx-footer-main {
    grid-template-columns: 1fr;
  }

  .mx-footer-newsletter {
    grid-column: auto;
  }
}


/* =========================================================
   BECOME A MODEL EMAIL LINK
   ========================================================= */

.mx-model-application-link {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 1px solid currentColor;
  background: transparent;
  color: inherit;

  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 600;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.mx-model-application-link:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.mx-model-application-link span:last-child {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mx-model-application-link:hover span:last-child {
  transform: translateX(5px);
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* ==============================================================
   01. SHARED ABOUT LABELS
   ============================================================== */
.mx-about-label,
.mx-about-kicker {
  margin: 0;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ==============================================================
   02. ABOUT HERO
   ============================================================== */
.mx-about-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-about-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.mx-about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 26%;
}

body:has(.mx-about-hero) .mx-main-nav a.is-current {
  color: var(--mx-oxblood-bright);
  background: #eee6db;
}

.mx-about-hero-content {
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mx-about-hero-copy {
  max-width: 650px;
  padding: 70px 0;
}

.mx-about-kicker {
  margin-bottom: 14px;
}

.mx-about-title {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(4.6rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.mx-about-title span {
  color: var(--mx-oxblood);
}

.mx-about-tagline {
  margin: 28px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mx-condensed);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mx-about-tagline span {
  color: var(--mx-oxblood-bright);
  font-size: 1.35rem;
}

.mx-about-founders-note {
  align-self: end;
  margin: 0 10px 54px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--mx-charcoal);
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-about-founders-note i {
  width: 86px;
  height: 1px;
  margin-top: 10px;
  background: var(--mx-oxblood);
}


/* ==============================================================
   03. MISSION
   ============================================================== */
.mx-about-mission {
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-about-mission-grid {
  padding-top: clamp(42px, 6vw, 84px);
  padding-bottom: clamp(42px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.mx-about-mission-main h2 {
  max-width: 720px;
  margin: 14px 0 0;
  font-family: var(--mx-serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.mx-about-mission-support {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.mx-about-mission-support p {
  margin: 0;
  max-width: 430px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.mx-about-arrow-link {
  color: var(--mx-oxblood-bright);
  font-size: 2rem;
}

/* ==============================================================
   04. AGENCY + STUDIO EDITORIAL SECTION
   ============================================================== */
.mx-about-dual {
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-about-dual-grid {
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns:
    minmax(180px, 0.75fr)
    minmax(280px, 1.2fr)
    minmax(280px, 1.2fr)
    minmax(180px, 0.75fr);
}

.mx-about-dual-image {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
}

.mx-about-dual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}

.mx-about-dual-copy {
  padding: clamp(38px, 5vw, 76px);
  border-left: 1px solid var(--mx-light-line);
}

.mx-about-dual-copy h2 {
  margin: 14px 0 20px;
  font-family: var(--mx-serif);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.mx-about-dual-copy p:not(.mx-about-label) {
  margin: 0 0 24px;
  max-width: 470px;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==============================================================
   05. AGENCY / STUDIO SPLIT BAND
   ============================================================== */
.mx-about-split {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mx-about-split-card {
  min-height: 185px;
  padding: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 0.7fr) auto;
  align-items: center;
  gap: 28px;
  border-right: 1px solid var(--mx-dark-line);
  transition:
    background-color var(--mx-fast),
    transform var(--mx-fast);
}

.mx-about-split-card:last-child {
  border-right: 0;
}

.mx-about-split-card h2 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.mx-about-split-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mx-about-split-card li {
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.mx-about-split-card > span {
  color: var(--mx-oxblood-bright);
  font-size: 2rem;
}

/* ==============================================================
   06. VALUES
   ============================================================== */
.mx-about-values {
  background: var(--mx-cream-light);
}

.mx-about-values-inner {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.mx-about-values-list {
  margin-top: 14px;
  border-top: 1px solid var(--mx-light-line);
}

.mx-about-value-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.4fr) auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--mx-light-line);
  transition:
    background-color var(--mx-fast),
    padding-left var(--mx-fast);
}

.mx-about-value-row h2 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  font-weight: 400;
}

.mx-about-value-row p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.mx-about-value-row > span {
  color: var(--mx-oxblood-bright);
  font-size: 1.35rem;
}

/* ==============================================================
   07. CINEMATIC QUOTE STRIP
   ============================================================== */
.mx-about-quote {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  isolation: isolate;
  color: var(--mx-white);
  background: var(--mx-black);
}

.mx-about-quote-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mx-about-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.mx-about-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(8, 9, 9, 0.98) 0%,
    rgba(8, 9, 9, 0.88) 32%,
    rgba(8, 9, 9, 0.12) 70%,
    rgba(8, 9, 9, 0) 100%
  );
}

.mx-about-quote-content {
  min-height: 180px;
  display: flex;
  align-items: center;
}

.mx-about-quote blockquote {
  position: relative;
  margin: 0;
  padding-left: 58px;
}

.mx-about-quote-mark {
  position: absolute;
  top: -10px;
  left: 0;
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: 5rem;
  line-height: 1;
}

.mx-about-quote blockquote p {
  margin: 0 0 18px;
  font-family: var(--mx-serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.mx-about-quote cite {
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==============================================================
   08. ABOUT PAGE HOVER STATES
   ============================================================== */
.mx-about-dual-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.025);
}

.mx-about-split-card:hover {
  background: var(--mx-black);
  transform: translateY(-4px);
}

.mx-about-value-row:hover {
  padding-left: 14px;
  background: #f0e9df;
}

/* ==============================================================
   09. RESPONSIVE LAYOUT
   ============================================================== */
@media (max-width: 1100px) {
  .mx-about-hero-image {
    width: 62%;
  }

  .mx-about-dual-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .mx-about-dual-image:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .mx-about-dual-copy:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .mx-about-split-card {
    grid-template-columns: 1fr auto;
  }

  .mx-about-split-card ul {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .mx-about-hero {
    min-height: 680px;
  }

  .mx-about-hero-image {
    width: 100%;
    opacity: 0.35;
  }

  .mx-about-hero-content {
    min-height: 590px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .mx-about-hero-copy {
    padding: 160px 0 90px;
  }

  .mx-about-founders-note {
    display: none;
  }

  .mx-about-mission-grid,
  .mx-about-split-grid {
    grid-template-columns: 1fr;
  }

  .mx-about-dual-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mx-about-split-card {
    border-right: 0;
    border-bottom: 1px solid var(--mx-dark-line);
  }

  .mx-about-value-row {
    grid-template-columns: 1fr auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mx-about-value-row p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .mx-about-title {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .mx-about-tagline {
    align-items: flex-start;
    flex-direction: column;
  }

  .mx-about-dual-grid {
    grid-template-columns: 1fr;
  }

  .mx-about-dual-image,
  .mx-about-dual-copy,
  .mx-about-dual-image:nth-of-type(2),
  .mx-about-dual-copy:nth-of-type(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .mx-about-dual-copy {
    padding: 34px var(--mx-page-pad);
  }

  .mx-about-value-row {
    gap: 12px 20px;
  }

  .mx-about-quote blockquote {
    padding-left: 42px;
  }
}


/* ==========================================================================
   TALENT PAGE
   ========================================================================== */

/* ==============================================================
   01. SHARED TALENT LABELS
   ============================================================== */
.mx-talent-eyebrow,
.mx-talent-section-label,
.mx-talent-profile-meta,
.mx-talent-profile-link {
  font-family: var(--mx-condensed);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-talent-eyebrow,
.mx-talent-section-label,
.mx-talent-profile-link {
  color: var(--mx-oxblood-bright);
}


/* ==============================================================
   02. TALENT HERO
   The hero image sits behind the page content.
   No overlay or gradient is used.
   ============================================================== */
.mx-talent-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-talent-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mx-talent-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* HERO IMAGE POSITION
     First value = left/right
     Second value = up/down */
  object-position: 69% 20%;
}

/* Current navigation item */
body:has(.mx-talent-hero) .mx-main-nav a.is-current {
  color: var(--mx-oxblood-bright);
  background: #eee6db;
}

.mx-talent-hero-content {
  min-height: 526px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mx-talent-hero-copy {
  max-width: 630px;
  padding: 58px 0 46px;
}

.mx-talent-eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
}

.mx-talent-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  font-family: var(--mx-serif);
}

.mx-talent-wordmark-model {
  color: var(--mx-charcoal);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.mx-talent-wordmark-x {
  margin-top: 0.06em;
  color: var(--mx-oxblood);
  font-size: clamp(5.8rem, 9vw, 9.5rem);
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.mx-talent-hero h1 {
  margin: 24px 0 0;
  font-family: var(--mx-serif);
  font-size: clamp(10rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.mx-talent-intro {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  max-width: 410px;
  font-family: var(--mx-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.35;
}

.mx-talent-intro > span {
  width: 18px;
  height: 2px;
  margin-top: 0.65em;
  background: var(--mx-oxblood-bright);
}

.mx-talent-side-note {
  align-self: center;
  margin-right: 6px;
  margin-top: 250px; /* pushes the entire note lower */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-talent-side-note i {
  width: 82px;
  height: 1px;
  margin-top: 10px;
  
  background: var(--mx-oxblood);
}


/* ==============================================================
   03. TALENT FILTERS
   ============================================================== */
.mx-talent-filters {
  background: var(--mx-cream-light);
}

.mx-talent-filter-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mx-talent-filter-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  align-items: stretch;
}

.mx-talent-filter-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mx-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color var(--mx-fast),
    background-color var(--mx-fast);
}

.mx-talent-filter-nav a.is-active {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-talent-filter-arrow {
  color: var(--mx-oxblood-bright);
  font-size: 1.8rem;
}


/* ==============================================================
   04. PRIMARY ROSTER CARDS
   ============================================================== */
.mx-talent-roster {
  padding-bottom: 28px;
  background: var(--mx-cream-light);
}

.mx-talent-roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}

.mx-talent-profile-card {
  min-width: 0;
  background: var(--mx-cream-light);
}

.mx-talent-profile-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ddd6cc;
}

.mx-talent-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}

.mx-talent-profile-card:nth-child(2) .mx-talent-profile-image img,
.mx-talent-profile-card:nth-child(4) .mx-talent-profile-image img {
  filter: grayscale(100%);
}

.mx-talent-profile-copy {
  padding: 14px 12px 16px;
  border-right: 1px solid var(--mx-light-line);
  border-bottom: 1px solid var(--mx-light-line);
  border-left: 1px solid var(--mx-light-line);
}

.mx-talent-profile-copy h2 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.mx-talent-profile-meta {
  margin: 8px 0 12px;
  color: var(--mx-charcoal);
  font-size: 0.58rem;
}

.mx-talent-profile-link {
  font-size: 0.65rem;
}


/* ==============================================================
   05. COMING SOON RAIL
   Horizontally scrollable without JavaScript.
   ============================================================== */
.mx-talent-coming-soon {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-talent-coming-inner {
  min-height: 230px;
  padding-top: 22px;
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 2.35fr);
  gap: 38px;
  align-items: center;
}

.mx-talent-coming-copy h2 {
  margin: 6px 0 10px;
  font-family: var(--mx-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.mx-talent-coming-copy > p:not(.mx-talent-section-label) {
  margin: 0;
  color: var(--mx-gray-light);
  font-family: var(--mx-serif);
  font-size: 1rem;
  line-height: 1.35;
}

.mx-talent-section-label {
  margin: 0;
  font-size: 0.65rem;
}

.mx-talent-carousel-controls {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.mx-talent-carousel-controls button {
  width: 42px;
  height: 42px;
  color: var(--mx-oxblood-bright);
  background: transparent;
  border: 1px solid var(--mx-dark-line);
  cursor: pointer;
  font-size: 1.2rem;
}

.mx-talent-coming-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.mx-talent-coming-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--mx-black);
}

.mx-talent-coming-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.76);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}

.mx-talent-coming-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--mx-white);
  font-family: var(--mx-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* ==============================================================
   06. AGENCY STATEMENT
   ============================================================== */
.mx-talent-agency {
  background: var(--mx-cream-light);
}

.mx-talent-agency-grid {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(360px, 1.65fr) minmax(200px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.mx-talent-agency-image {
  margin: 0;
}

.mx-talent-agency-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
}

.mx-talent-agency-copy h2 {
  max-width: 700px;
  margin: 10px 0 18px;
  font-family: var(--mx-serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.mx-talent-stats {
  margin: 0;
}

.mx-talent-stats div {
  padding: 7px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-talent-stats dt {
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mx-talent-stats dd {
  margin: 0;
  font-family: var(--mx-condensed);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ==============================================================
   08. HOVER STATES
   ============================================================== */
.mx-talent-filter-nav a:hover {
  color: var(--mx-oxblood-bright);
  background: #efe8de;
}

.mx-talent-filter-nav a.is-active:hover {
  color: var(--mx-white);
  background: var(--mx-black);
}

.mx-talent-profile-card:hover .mx-talent-profile-image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.mx-talent-profile-link:hover,
.mx-footer-contact-details a:hover {
  color: var(--mx-oxblood);
}

.mx-talent-coming-card:hover img {
  filter: grayscale(0%) brightness(0.9);
  transform: scale(1.03);
}


/* ==============================================================
   09. RESPONSIVE LAYOUT
   ============================================================== */
@media (max-width: 1150px) {
  .mx-talent-roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mx-talent-profile-card:nth-child(4),
  .mx-talent-profile-card:nth-child(5) {
    grid-column: span 1;
  }

  .mx-talent-agency-grid {
    grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  }

  .mx-talent-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}


@media (max-width: 860px) {
  .mx-talent-hero {
    min-height: 720px;
  }

  .mx-talent-hero-image img {
    object-position: 62% 20%;
    opacity: 0.42;
  }

  .mx-talent-hero-content {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .mx-talent-hero-copy {
    padding: 155px 0 70px;
  }

  .mx-talent-side-note {
    display: none;
  }

  .mx-talent-filter-inner {
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .mx-talent-filter-nav {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .mx-talent-filter-arrow {
    display: none;
  }

  .mx-talent-coming-inner {
    grid-template-columns: 1fr;
  }

  .mx-talent-agency-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mx-talent-stats {
    grid-column: 1 / -1;
  }
}


@media (max-width: 680px) {
  .mx-talent-roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-talent-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 520px) {
  .mx-talent-filter-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-talent-roster-grid,
  .mx-talent-agency-grid {
    grid-template-columns: 1fr;
  }

  .mx-talent-wordmark-model {
    font-size: 3.2rem;
  }

  .mx-talent-wordmark-x {
    font-size: 6rem;
  }

  .mx-talent-hero h1 {
    font-size: 5.2rem;
  }

  .mx-talent-stats {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   STUDIO PAGE
   ========================================================================== */

/* ==============================================================
   MODEL [X] STUDIO PAGE
   Page-specific styles only.
   Works with css/modelx_landing_v3.css
   ============================================================== */

/* 01. SHARED LABELS */
.mx-studio-eyebrow,
.mx-studio-section-label,
.mx-studio-service-heading,
.mx-studio-process-item h3,
.mx-studio-booking-list {
  font-family: var(--mx-condensed);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-studio-eyebrow,
.mx-studio-section-label,
.mx-studio-service-heading span {
  color: var(--mx-oxblood-bright);
}

/* 02. STUDIO HERO */
.mx-studio-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-studio-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mx-studio-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 20%;
}

body:has(.mx-studio-hero) .mx-main-nav a.is-current {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-studio-hero-content {
  min-height: 526px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mx-studio-hero-copy {
  max-width: 670px;
  padding: 58px 0 46px;
}

.mx-studio-eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
}

.mx-studio-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  font-family: var(--mx-serif);
}

.mx-studio-wordmark-model {
  color: var(--mx-charcoal);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.mx-studio-wordmark-x {
  margin-top: 0.06em;
  color: var(--mx-oxblood);
  font-size: clamp(5.8rem, 9vw, 9.5rem);
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.mx-studio-hero h1 {
  margin: 24px 0 0;
  font-family: var(--mx-serif);
  font-size: clamp(10rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.mx-studio-intro {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  max-width: 480px;
  font-family: var(--mx-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.35;
}

.mx-studio-intro > span {
  width: 18px;
  height: 2px;
  margin-top: 0.65em;
  background: var(--mx-oxblood-bright);
}

.mx-studio-side-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
    margin-top: 250px; /* pushes the entire note lower */

  margin-right: 6px;
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-studio-side-note i {
  width: 82px;
  height: 1px;
  margin-top: 10px;
  background: var(--mx-oxblood);
}

/* 03. PRIMARY SERVICES */
.mx-studio-services {
  background: var(--mx-cream-light);
}

.mx-studio-services-grid {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.mx-studio-service-heading {
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.mx-studio-service-heading h2 {
  margin: 0;
  font-family: var(--mx-condensed);
  font-size: 1rem;
  text-transform: uppercase;
}

.mx-studio-service-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.mx-studio-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--mx-medium), transform var(--mx-medium);
}

.mx-studio-service-card:nth-child(1) .mx-studio-service-image img,
.mx-studio-service-card:nth-child(3) .mx-studio-service-image img {
  filter: grayscale(100%);
}

.mx-studio-service-card > p {
  margin: 16px 0 14px;
  font-family: var(--mx-serif);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* 04. PROCESS BAND */
.mx-studio-process {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-studio-process-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.mx-studio-process-intro,
.mx-studio-process-item {
  padding: clamp(30px, 4vw, 52px);
}

.mx-studio-process-intro {
  border-right: 1px solid var(--mx-dark-line);
}

.mx-studio-process-intro h2 {
  margin: 10px 0 14px;
  font-family: var(--mx-serif);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 0.95;
}

.mx-studio-process-intro > p:not(.mx-studio-section-label),
.mx-studio-process-item p {
  color: var(--mx-gray-light);
  font-family: var(--mx-serif);
  line-height: 1.45;
}

.mx-studio-process-item {
  border-right: 1px solid var(--mx-dark-line);
}

.mx-studio-process-item:last-child {
  border-right: 0;
}

.mx-studio-process-icon {
  margin-bottom: 18px;
  color: var(--mx-oxblood-bright);
  font-size: 2.4rem;
}

.mx-studio-process-item h3 {
  margin: 0 0 10px;
  font-size: 0.72rem;
}

/* 05. FEATURED PROJECT */
.mx-studio-featured {
  background: var(--mx-cream-light);
}

.mx-studio-featured-grid {
  padding-top: 28px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: 36px;
}

.mx-studio-featured-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--mx-serif);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 400;
}

.mx-studio-featured-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.mx-studio-featured-rail a {
  overflow: hidden;
}

.mx-studio-featured-rail img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--mx-medium), transform var(--mx-medium);
}

/* 06. BOOKING */
.mx-studio-booking {
  background: #eee4d8;
  border-top: 1px solid var(--mx-light-line);
}

.mx-studio-booking-grid {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(360px, 1.4fr) minmax(250px, 0.8fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.mx-studio-booking-image {
  margin: 0;
}

.mx-studio-booking-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(100%);
}

.mx-studio-booking-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--mx-serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 400;
}

.mx-studio-booking-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mx-studio-booking-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--mx-light-line);
  font-size: 0.66rem;
}

/* 08. HOVER STATES */
.mx-studio-service-card:hover .mx-studio-service-image img,
.mx-studio-featured-rail a:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* 09. RESPONSIVE */
@media (max-width: 1150px) {
  .mx-studio-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-studio-process-intro {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--mx-dark-line);
  }

  .mx-studio-booking-grid {
    grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.2fr);
  }

  .mx-studio-booking-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .mx-studio-hero {
    min-height: 720px;
  }

  .mx-studio-hero-image img {
    object-position: 63% 20%;
    opacity: 0.42;
  }

  .mx-studio-hero-content {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .mx-studio-side-note {
    display: none;
  }

  .mx-studio-services-grid,
  .mx-studio-featured-grid {
    grid-template-columns: 1fr;
  }

  .mx-studio-featured-rail {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    grid-template-columns: none;
  }

  .mx-studio-booking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .mx-studio-process-grid,
  .mx-studio-booking-grid {
    grid-template-columns: 1fr;
  }

  .mx-studio-process-item {
    border-right: 0;
    border-bottom: 1px solid var(--mx-dark-line);
  }

  .mx-studio-booking-list {
    grid-template-columns: 1fr 1fr;
  }

  .mx-studio-wordmark-model {
    font-size: 3.2rem;
  }

  .mx-studio-wordmark-x {
    font-size: 6rem;
  }

  .mx-studio-hero h1 {
    font-size: 5.2rem;
  }
}


/* ==========================================================================
   CREATIVE SERVICES PAGE
   ========================================================================== */

/* ==============================================================
   01. SHARED CREATIVE LABELS
   ============================================================== */
.mx-creative-eyebrow,
.mx-creative-section-label,
.mx-creative-work-label,
.mx-creative-principle h2,
.mx-creative-inquiry-email span {
  font-family: var(--mx-condensed);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-creative-eyebrow,
.mx-creative-section-label,
.mx-creative-work-label {
  color: var(--mx-oxblood-bright);
}


/* ==============================================================
   02. CREATIVE HERO
   No overlay or gradient is applied.
   ============================================================== */
.mx-creative-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
  border-bottom: 1px solid #000000;
}

.mx-creative-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mx-creative-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 18%;
}

body:has(.mx-creative-hero) .mx-main-nav a.is-current {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-creative-hero-content {
  min-height: 526px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mx-creative-hero-copy {
  max-width: 680px;
  padding: 58px 0 46px;
}

.mx-creative-eyebrow {
  margin: 0 0 0px; /*distance between red text and main title*/
  font-size: 0.68rem;
}

.mx-creative-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  font-family: var(--mx-serif);
}

.mx-creative-wordmark-model {
  color: var(--mx-charcoal);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.mx-creative-wordmark-x {
  margin-top: 0.06em;
  color: var(--mx-oxblood);
  font-size: clamp(5.8rem, 9vw, 9.5rem);
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.mx-creative-hero h1 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(8rem, 10vw, 11rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.06em;
}

.mx-creative-intro {
  margin: 20px 0 0; /*distance between main title and the paragraph below */
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  max-width: 620px;
  font-family: var(--mx-serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
}

.mx-creative-intro > span {
  width: 18px;
  height: 2px;
  margin-top: 0.65em;
  background: var(--mx-oxblood-bright);
}

.mx-creative-side-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 5px;
  margin-top: 125px; /* pushes the entire note lower */
  font-family: var(--mx-condensed);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.65;
  text-transform: uppercase;
}

.mx-creative-side-note i {
  width: 100px;
  height: 1px;
  margin-top: 9px;
  background: var(--mx-oxblood);
}


/* ==============================================================
   03. WORK GALLERY
   Change grid placement by editing the grid-row/grid-column rules.
   ============================================================== */
.mx-creative-gallery {
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--mx-cream-light);
}

.mx-creative-gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 0.9fr 0.9fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}

.mx-creative-work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--mx-charcoal);
}

.mx-creative-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--mx-medium),
    filter var(--mx-medium);
}

.mx-creative-work-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 8px;
  color: var(--mx-white);
  background: rgba(17, 19, 19, 0.78);
  font-size: 0.58rem;
}

.mx-creative-work-card--poster {
  grid-column: 1;
  grid-row: 1;
}

.mx-creative-work-card--spread {
  grid-column: 2;
  grid-row: 1;
}

.mx-creative-work-card--campaign {
  grid-column: 3;
  grid-row: 1;
}

.mx-creative-work-card--social {
  grid-column: 4;
  grid-row: 1;
}

.mx-creative-work-card--deck {
  grid-column: 1;
  grid-row: 2;
}

.mx-creative-work-card--billboard {
  grid-column: 2;
  grid-row: 2;
}

.mx-creative-work-card--guidelines {
  grid-column: 3;
  grid-row: 2;
}

.mx-creative-work-card--lookbook {
  grid-column: 4;
  grid-row: 2;
}


/* ==============================================================
   04. DESIGN APPROACH
   ============================================================== */
.mx-creative-approach {
  background: var(--mx-cream-light);
  border-top: 1px solid var(--mx-light-line);
}

.mx-creative-approach-inner {
  padding-top: 30px;
  padding-bottom: 34px;
}

.mx-creative-approach-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.25fr;
  border-top: 1px solid var(--mx-light-line);
}

.mx-creative-principle,
.mx-creative-cta-card {
  min-height: 190px;
  padding: 28px 24px;
  border-right: 1px solid var(--mx-light-line);
}

.mx-creative-principle-icon {
  margin-bottom: 16px;
  color: var(--mx-oxblood-bright);
  font-size: 1.9rem;
}

.mx-creative-principle h2 {
  margin: 0 0 10px;
  color: var(--mx-charcoal);
  font-size: 0.7rem;
}

.mx-creative-principle p {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: 0.96rem;
  line-height: 1.45;
}

.mx-creative-cta-card {
  border-right: 0;
  background: #eee4d8;
}

.mx-creative-cta-card h2 {
  margin: 10px 0 18px;
  font-family: var(--mx-serif);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1.02;
}


/* ==============================================================
   05. FEATURED PROJECT
   ============================================================== */
.mx-creative-featured {
  color: var(--mx-white);
  background: var(--mx-charcoal);
}

.mx-creative-featured-grid {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2.2fr);
  gap: 36px;
}

.mx-creative-featured-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--mx-serif);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.mx-creative-featured-copy > p:not(.mx-creative-section-label) {
  margin: 0 0 20px;
  color: var(--mx-gray-light);
  font-family: var(--mx-serif);
  font-size: 1rem;
  line-height: 1.4;
}

.mx-creative-featured-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.mx-creative-featured-rail a {
  overflow: hidden;
}

.mx-creative-featured-rail img {
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}


/* ==============================================================
   06. INQUIRY SECTION
   ============================================================== */
.mx-creative-inquiry {
  background: #eee4d8;
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-creative-inquiry-grid {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(360px, 1.5fr) minmax(240px, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.mx-creative-inquiry-image {
  margin: 0;
}

.mx-creative-inquiry-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
}

.mx-creative-inquiry-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--mx-serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.mx-creative-inquiry-copy > p:not(.mx-creative-section-label) {
  margin: 0 0 18px;
  font-family: var(--mx-serif);
  font-size: 1rem;
  line-height: 1.4;
}

.mx-creative-inquiry-email {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mx-creative-inquiry-email span {
  color: var(--mx-charcoal);
  font-size: 0.66rem;
}

.mx-creative-inquiry-email a {
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: 1.4rem;
  overflow-wrap: anywhere;
}


/* ==============================================================
   08. HOVER STATES
   ============================================================== */
.mx-creative-work-card:hover img {
  transform: scale(1.03);
}

.mx-creative-featured-rail a:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}


/* ==============================================================
   09. RESPONSIVE LAYOUT
   ============================================================== */
@media (max-width: 1150px) {
  .mx-creative-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 240px);
  }

  .mx-creative-work-card {
    grid-column: auto;
    grid-row: auto;
  }

  .mx-creative-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-creative-cta-card {
    grid-column: 1 / -1;
  }

  .mx-creative-inquiry-grid {
    grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  }

  .mx-creative-inquiry-email {
    grid-column: 1 / -1;
  }
}


@media (max-width: 860px) {
  .mx-creative-hero {
    min-height: 730px;
  }

  .mx-creative-hero-image img {
    object-position: 62% 18%;
    opacity: 0.42;
  }

  .mx-creative-hero-content {
    min-height: 630px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .mx-creative-hero-copy {
    padding: 155px 0 70px;
  }

  .mx-creative-side-note {
    display: none;
  }

  .mx-creative-featured-grid {
    grid-template-columns: 1fr;
  }

  .mx-creative-featured-rail {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    grid-template-columns: none;
  }

  .mx-creative-inquiry-grid {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 620px) {
  .mx-creative-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 260px);
  }

  .mx-creative-approach-grid,
  .mx-creative-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .mx-creative-principle,
  .mx-creative-cta-card {
    border-right: 0;
    border-bottom: 1px solid var(--mx-light-line);
  }

  .mx-creative-wordmark-model {
    font-size: 3.2rem;
  }

  .mx-creative-wordmark-x {
    font-size: 6rem;
  }

  .mx-creative-hero h1 {
    font-size: 4.8rem;
  }
}


/* ==========================================================================
   JOURNAL PAGE
   ========================================================================== */

/* ==============================================================
   01. SHARED JOURNAL LABELS
   ============================================================== */
.mx-journal-kicker,
.mx-journal-label,
.mx-journal-code,
.mx-journal-category,
.mx-journal-meta {
  font-family: var(--mx-condensed);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-journal-kicker,
.mx-journal-label,
.mx-journal-code {
  color: var(--mx-oxblood-bright);
}


/* ==============================================================
   02. JOURNAL HERO
   No overlay is used over the hero image.
   ============================================================== */
.mx-journal-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background: var(--mx-cream-light);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-journal-hero-image {
  position: absolute;
  inset: 0 0 0 0%;
  z-index: -1;
}

.mx-journal-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 24%;
}

body:has(.mx-journal-hero) .mx-main-nav a.is-current {
  color: var(--mx-oxblood-bright);
  background: #eee6db;
}

.mx-journal-hero-content {
  min-height: 336px;
  display: flex;
  align-items: center;
}

.mx-journal-hero-copy {
  max-width: 540px;
  padding: 72px 0 58px;
}

.mx-journal-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem; /* MX Journal Archive red text */
}

.mx-journal-hero h1 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(10rem, 10vw, 10rem); /* Journal Logo Size */
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.mx-journal-intro {
  margin: 28px 0 0;
  font-family: var(--mx-condensed);
  font-size: clamp(0.75rem, 1.05vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.55;
  text-transform: uppercase;
}

.mx-journal-intro span {
  margin-left: 14px;
  color: var(--mx-oxblood-bright);
  font-size: 1.3rem;
}


/* ==============================================================
   03. FEATURED STORY
   ============================================================== */
.mx-journal-featured {
  padding-top: 0px;
  padding-bottom: 0px;
  background: var(--mx-cream-light);
}

.mx-journal-featured-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.52fr) minmax(0, 1.48fr);
  padding-left: 0;
  padding-right: 0;
  color: var(--mx-white);
  background: var(--mx-charcoal);
  border: 0px solid var(--mx-dark-line);
}

.mx-journal-featured-copy {
  padding: clamp(34px, 5vw, 68px);
}

.mx-journal-label {
  margin: 0 0 18px;
  font-size: 0.7rem;
}

.mx-journal-featured-copy h2 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.mx-journal-meta {
  margin: 18px 0 20px;
  color: var(--mx-gray-light);
  font-size: 0.67rem;
}

.mx-journal-featured-copy > p:not(.mx-journal-label):not(.mx-journal-meta) {
  max-width: 390px;
  margin: 0 0 26px;
  color: var(--mx-gray-light);
  font-family: var(--mx-serif);
  font-size: 1.3rem;
  line-height: 1.22;
}

.mx-journal-featured-image {
  min-height: 340px;
  overflow: hidden;
}

.mx-journal-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--mx-medium);
}


/* ==============================================================
   04. FILTER BAR
   ============================================================== */
.mx-journal-filters {
  background: var(--mx-cream-light);
}

.mx-journal-filter-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--mx-light-line);
  border-bottom: 1px solid var(--mx-light-line);
}

.mx-journal-filter-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.mx-journal-filter-nav a,
.mx-journal-sort {
  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mx-journal-filter-nav a {
  position: relative;
  padding: 20px 0;
}

.mx-journal-filter-nav a.is-active {
  color: var(--mx-oxblood-bright);
}

.mx-journal-filter-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  background: var(--mx-oxblood-bright);
}

.mx-journal-sort {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mx-journal-sort span {
  color: var(--mx-gray-dark);
}

.mx-journal-sort button {
  padding: 0;
  color: var(--mx-charcoal);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}


/* ==============================================================
   05. JOURNAL ARCHIVE GRID
   ============================================================== */
.mx-journal-archive {
  padding-top: 0;
  padding-bottom: 18px;
  background: var(--mx-cream-light);
}

.mx-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0;
  padding-right: 0;
  border-left: 1px solid var(--mx-light-line);
  border-top: 1px solid var(--mx-light-line);
}

.mx-journal-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, 0.9fr);
  border-right: 1px solid var(--mx-light-line);
  border-bottom: 1px solid var(--mx-light-line);
  background: var(--mx-cream-light);
}

.mx-journal-card-copy {
  min-height: 320px;
  padding: 30px 26px 22px;
  display: flex;
  flex-direction: column;
}

.mx-journal-code {
  margin: 0;
  font-size: 0.72rem;
}

.mx-journal-category {
  margin: 8px 0 22px;
  color: var(--mx-charcoal);
  font-size: 0.62rem;
}

.mx-journal-card h2 {
  margin: 0 0 14px;
  font-family: var(--mx-serif);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
}

.mx-journal-card-copy > p:not(.mx-journal-code):not(.mx-journal-category) {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.mx-journal-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--mx-condensed);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mx-journal-card-footer a {
  color: var(--mx-oxblood-bright);
  font-size: 1.25rem;
}

.mx-journal-card-image {
  min-height: 320px;
  overflow: hidden;
}

.mx-journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter var(--mx-medium),
    transform var(--mx-medium);
}


/* ==============================================================
   06. SUBSCRIPTION STRIP
   ============================================================== */
.mx-journal-subscribe {
  color: var(--mx-white);
  background: var(--mx-charcoal);
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-journal-subscribe-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 50px;
}

.mx-journal-subscribe-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mx-journal-quote-mark {
  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: 4rem;
  line-height: 0.7;
}

.mx-journal-subscribe h2 {
  margin: 0;
  font-family: var(--mx-serif);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 400;
}

.mx-journal-subscribe p {
  margin: 4px 0 0;
  color: var(--mx-gray-light);
  font-family: var(--mx-condensed);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mx-journal-subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  border-bottom: 1px solid var(--mx-dark-line);
}

.mx-journal-subscribe-form input {
  width: 100%;
  min-width: 0;
  padding: 13px 0;
  color: var(--mx-white);
  background: transparent;
  border: 0;
  outline: none;
}

.mx-journal-subscribe-form input::placeholder {
  color: var(--mx-gray-light);
}

.mx-journal-subscribe-form button {
  color: var(--mx-oxblood-bright);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
}


/* ==============================================================
   07. JOURNAL HOVER STATES
   ============================================================== */
.mx-journal-featured-image:hover img {
  transform: scale(1.025);
}

.mx-journal-card:hover .mx-journal-card-image img {
  filter: grayscale(0%);
  transform: scale(1.025);
}

.mx-journal-filter-nav a {
  transition: color var(--mx-fast);
}

.mx-journal-filter-nav a:hover {
  color: var(--mx-oxblood-bright);
}


/* ==============================================================
   08. JOURNAL RESPONSIVE LAYOUT
   ============================================================== */
@media (max-width: 1150px) {
  .mx-journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-journal-filter-nav {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .mx-journal-hero {
    min-height: 620px;
  }

  .mx-journal-hero-image {
    inset: 0;
    opacity: 0.35;
  }

  .mx-journal-hero-content {
    min-height: 520px;
    align-items: end;
  }

  .mx-journal-hero-copy {
    padding: 150px 0 80px;
  }

  .mx-journal-featured-grid,
  .mx-journal-subscribe-inner {
    grid-template-columns: 1fr;
  }

  .mx-journal-featured-image {
    min-height: 300px;
  }

  .mx-journal-filter-inner {
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .mx-journal-filter-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .mx-journal-subscribe-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 680px) {
  .mx-journal-grid {
    grid-template-columns: 1fr;
  }

  .mx-journal-card {
    grid-template-columns: 1fr 0.8fr;
  }

  .mx-journal-card-copy,
  .mx-journal-card-image {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .mx-journal-card {
    grid-template-columns: 1fr;
  }

  .mx-journal-card-image {
    min-height: 260px;
    grid-row: 1;
  }

  .mx-journal-card-copy {
    min-height: auto;
  }

  .mx-journal-filter-nav {
    gap: 16px 22px;
  }

  .mx-journal-intro br {
    display: none;
  }
}



/* QA: disabled future footer links */
.mx-footer-column a[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}
/* ==========================================================================
   SHARED CAMPAIGN NAVIGATION
   Used by campaign/editorial pages such as Morocco and Elements.

   HTML STRUCTURE
   --------------
   .mx-gallery-header
     .mx-gallery-header-inner.mx-container
       .mx-logo
       .mx-model-nav
       .mx-location

   TRANSPARENCY LEVER
   ------------------
   Change --mx-campaign-nav-opacity to control the black-band opacity.
   1    = fully opaque
   .82  = recommended smoked-glass setting
   .65  = more transparent
   ========================================================================== */

:root {
  --mx-campaign-nav-opacity: .82;
  --mx-campaign-nav-blur: 12px;
  --mx-campaign-nav-height: 74px;
}

/* Fixed smoked-glass band */
.mx-gallery-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;

  width: 100%;
  min-height: var(--mx-campaign-nav-height);

  background: rgba(8, 9, 9, var(--mx-campaign-nav-opacity));
  border-bottom: 1px solid var(--mx-dark-line);

  -webkit-backdrop-filter: blur(var(--mx-campaign-nav-blur));
  backdrop-filter: blur(var(--mx-campaign-nav-blur));
}

/* Centers the navigation to the same site width as the rest of Model [X]. */
.mx-gallery-header-inner {
  min-height: var(--mx-campaign-nav-height);

  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  gap: 28px;
}

/* Left [X] */
.mx-gallery-header .mx-logo {
  justify-self: start;

  color: var(--mx-oxblood-bright);
  font-family: var(--mx-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;

  transition: color var(--mx-fast);
}

.mx-gallery-header .mx-logo:hover {
  color: var(--mx-white);
}

/* Center campaign links */
.mx-gallery-header .mx-model-nav {
  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.mx-gallery-header .mx-model-nav a,
.mx-gallery-header .mx-location {
  font-family: var(--mx-condensed);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.mx-gallery-header .mx-model-nav a {
  position: relative;

  color: rgba(255, 255, 255, .90);
  text-transform: uppercase;

  transition: color var(--mx-fast);
}

.mx-gallery-header .mx-model-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;

  height: 1px;
  background: var(--mx-oxblood-bright);

  transition: right var(--mx-fast);
}

.mx-gallery-header .mx-model-nav a:hover,
.mx-gallery-header .mx-model-nav a.is-active {
  color: var(--mx-white);
}

.mx-gallery-header .mx-model-nav a:hover::after,
.mx-gallery-header .mx-model-nav a.is-active::after {
  right: 0;
}

/* Right location */
.mx-gallery-header .mx-location {
  justify-self: end;

  margin: 0;

  color: var(--mx-white);
  letter-spacing: .04em;
  text-transform: none;
}

/* Campaign pages intentionally begin behind the fixed translucent band. */
.mx-gallery-header + main {
  padding-top: 0;
}


/* CAMPAIGN NAVIGATION — TABLET */
@media (max-width: 920px) {
  .mx-gallery-header-inner {
    grid-template-columns: auto 1fr;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .mx-gallery-header .mx-location {
    display: none;
  }

  .mx-gallery-header .mx-model-nav {
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}


/* CAMPAIGN NAVIGATION — MOBILE */
@media (max-width: 620px) {
  .mx-gallery-header-inner {
    grid-template-columns: 1fr;
  }

  .mx-gallery-header .mx-model-nav {
    justify-self: start;
    justify-content: flex-start;

    width: 100%;
    overflow-x: auto;

    padding-bottom: 4px;

    flex-wrap: nowrap;
  }

  .mx-gallery-header .mx-model-nav a {
    flex: 0 0 auto;
  }
}


/* =========================================================
   MODEL [X] TAGLINE STRIP
   ========================================================= */

.mx-tagline-strip {

  /* -----------------------------------------
     MAIN CONTROL LEVERS
     ----------------------------------------- */

  --tagline-height: 100px;
  --tagline-opacity: 0.92;

  --tagline-title-size: clamp(2rem, 4vw, 4rem);
  --tagline-credit-size: 0.85rem;

  --tagline-quote-size: clamp(4rem, 8vw, 7rem);

  background: rgba(0, 0, 0, var(--tagline-opacity));

  min-height: var(--tagline-height);

  display: flex;
  align-items: center;

  color: #ffffff;
}


/* Inner container */

.mx-tagline-strip-inner {
  width: 100%;
}


/* Quote + text grouping */

.mx-tagline-strip-copy {
  display: flex;
  align-items: center;

  gap: clamp(18px, 3vw, 38px);

  padding-top: 28px;
  padding-bottom: 28px;
}


/* Large quotation mark */

.mx-tagline-quote-mark {
  color: #b32025;

  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--tagline-quote-size);
  font-weight: 400;

  line-height: 0.7;

  flex-shrink: 0;
}


/* Main tagline */

.mx-tagline-text h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--tagline-title-size);

  font-weight: 400;
  line-height: 1;

  letter-spacing: -0.03em;
}


/* Amanda + Jess */

.mx-tagline-text p {
  margin: 12px 0 0;

  color: #b32025;

  font-family: Arial, Helvetica, sans-serif;

  font-size: var(--tagline-credit-size);
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .mx-tagline-strip {
    --tagline-height: 130px;
    --tagline-title-size: clamp(1.7rem, 7vw, 2.5rem);
    --tagline-quote-size: 4rem;
  }

  .mx-tagline-strip-copy {
    gap: 14px;

    padding-top: 24px;
    padding-bottom: 24px;
  }

  .mx-tagline-text p {
    margin-top: 8px;
  }
}


/* ==========================================================================
   UNIFIED MAIN-PAGE HERO BRAND SYSTEM
   Canonical logo/hero treatment for About, Talent, Studio, Creative, Journal.

   INDIVIDUAL POSITION CONTROLS
   Positive X = right. Negative X = left.
   Positive Y = down.  Negative Y = up.

   --mx-brand-copy-x / y          whole text group
   --mx-brand-eyebrow-x / y       eyebrow only
   --mx-brand-tags-x / y          tag row only
   --mx-brand-model-x / y         "Model" only
   --mx-brand-x-x / y             "[X]" only
   --mx-brand-description-x / y   description only
   --mx-brand-side-x / y          side note only
   ========================================================================== */

.mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: 0px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-tags-x: 0px;
  --mx-brand-tags-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-description-x: 0px;
  --mx-brand-description-y: 0px;

  --mx-brand-side-x: 0px;
  --mx-brand-side-y: 0px;

  --mx-brand-eyebrow-size: 0.78rem;
  --mx-brand-tags-size: 0.68rem;
  --mx-brand-model-size: clamp(6rem, 12vw, 11.8rem);
  --mx-brand-x-size: clamp(9rem, 18vw, 17rem);
  --mx-brand-description-size: clamp(1.15rem, 1.45vw, 1.5rem);
  --mx-brand-side-size: 0.70rem;

  min-height: inherit;
}

.mx-page-hero-brand .mx-page-hero-brand__copy {
  max-width: 820px;
  padding: 70px 0 110px;
  transform: translate(
    var(--mx-brand-copy-x),
    var(--mx-brand-copy-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__eyebrow {
  margin: 0 0 18px;
  font-size: var(--mx-brand-eyebrow-size);
  transform: translate(
    var(--mx-brand-eyebrow-x),
    var(--mx-brand-eyebrow-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__tags {
  margin: 0 0 14px;
  font-size: var(--mx-brand-tags-size);
  transform: translate(
    var(--mx-brand-tags-x),
    var(--mx-brand-tags-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--mx-charcoal);
  font-family: var(--mx-serif);
  font-weight: 400;
  letter-spacing: -0.075em;
}

.mx-page-hero-brand .mx-page-hero-brand__model {
  display: block;
  color: inherit;
  font-size: var(--mx-brand-model-size);
  line-height: 0.72;
  white-space: nowrap;
  transform: translate(
    var(--mx-brand-model-x),
    var(--mx-brand-model-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__x {
  display: block;
  margin-top: 0.02em;
  color: var(--mx-oxblood);
  font-size: var(--mx-brand-x-size);
  line-height: 0.72;
  white-space: nowrap;
  transform: translate(
    var(--mx-brand-x-x),
    var(--mx-brand-x-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__description {
  max-width: 520px;
  margin: 28px 0 0;
  font-family: var(--mx-condensed);
  font-size: var(--mx-brand-description-size);
  line-height: 1.48;
  transform: translate(
    var(--mx-brand-description-x),
    var(--mx-brand-description-y)
  );
}

.mx-page-hero-brand .mx-page-hero-brand__side-note {
  margin-top: 250px;
  margin-right: 8px;
  font-size: var(--mx-brand-side-size);
  transform: translate(
    var(--mx-brand-side-x),
    var(--mx-brand-side-y)
  );
}

/* ==========================================================================
   PAGE-SPECIFIC HERO CONTROL PANELS
   These are the main levers you will edit.
   ========================================================================== */

.mx-about-hero .mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: -85px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-tags-x: 0px;
  --mx-brand-tags-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-model-size: clamp(5rem, 9vw, 9rem);
  --mx-brand-x-size: clamp(7rem, 14vw, 13rem);
}

.mx-talent-hero .mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: -118px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-description-x: 60px;
  --mx-brand-description-y: 0px;

  --mx-brand-side-x: 0px;
  --mx-brand-side-y: 0px;
}

.mx-studio-hero .mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: -118px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-description-x: 60px;
  --mx-brand-description-y: 0px;

  --mx-brand-side-x: 0px;
  --mx-brand-side-y: 0px;
}

.mx-creative-hero .mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: -74px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-tags-x: 0px;
  --mx-brand-tags-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-description-x: 75px;
  --mx-brand-description-y: 0px;

  --mx-brand-side-x: 0px;
  --mx-brand-side-y: 0px;
}

.mx-journal-hero .mx-page-hero-brand {
  --mx-brand-copy-x: 0px;
  --mx-brand-copy-y: -22px;

  --mx-brand-eyebrow-x: 0px;
  --mx-brand-eyebrow-y: 0px;

  --mx-brand-model-x: 0px;
  --mx-brand-model-y: 0px;

  --mx-brand-x-x: 0px;
  --mx-brand-x-y: 0px;

  --mx-brand-description-x: 80px;
  --mx-brand-description-y: 0px;
}

/* Creative hero text stays white over the dark portrait. */
.mx-creative-hero .mx-page-hero-brand__model,
.mx-creative-hero .mx-page-hero-brand__description {
  color: var(--mx-white);
}

/* ==========================================================================
   RESPONSIVE HERO BRAND
   ========================================================================== */

@media (max-width: 860px) {
  .mx-about-hero .mx-page-hero-brand,
  .mx-talent-hero .mx-page-hero-brand,
  .mx-studio-hero .mx-page-hero-brand,
  .mx-creative-hero .mx-page-hero-brand,
  .mx-journal-hero .mx-page-hero-brand {
    --mx-brand-copy-x: 0px;
    --mx-brand-copy-y: 0px;

    --mx-brand-model-x: 0px;
    --mx-brand-model-y: 0px;

    --mx-brand-x-x: 0px;
    --mx-brand-x-y: 0px;

    --mx-brand-description-x: 0px;
    --mx-brand-description-y: 0px;
  }

  .mx-page-hero-brand .mx-page-hero-brand__copy {
    padding: 150px 0 80px;
  }

  .mx-page-hero-brand {
    --mx-brand-model-size: clamp(4.8rem, 17vw, 7.2rem);
    --mx-brand-x-size: clamp(7.2rem, 25vw, 10.8rem);
  }

  .mx-page-hero-brand .mx-page-hero-brand__side-note {
    display: none;
  }
}

@media (max-width: 520px) {
  .mx-page-hero-brand {
    --mx-brand-model-size: clamp(4rem, 18vw, 5.8rem);
    --mx-brand-x-size: clamp(6.2rem, 28vw, 8.5rem);
    --mx-brand-description-size: 1rem;
  }

  .mx-page-hero-brand .mx-page-hero-brand__tags {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

/* =======================================================
   FOOTER OWNERSHIP STRIP
   ======================================================= */

.mx-footer-ownership {
  width: 100%;
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  background: #050505;
  color: #d8d2cc;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mx-footer-ownership p {
  width: 100%;
  margin: 0;

  text-align: center;

  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =======================================================
   FOOTER OWNERSHIP STRIP
   Standalone strip placed outside the main footer.
   ======================================================= */

.mx-footer-ownership {
  width: 100%;
  padding: 12px 20px;

  background: var(--mx-black);
  color: var(--mx-gray-light);

  border-top: 1px solid var(--mx-dark-line);

  text-align: center;
}

.mx-footer-ownership p {
  margin: 0;

  font-family: var(--mx-condensed);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  text-align: center;
}




/* ==============================================================
   MODEL [X] — PORTABLE AWARDS / RECOGNITION STRIP
   Compact Two-Row Layout with Centered Award Content Blocks
   ============================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&family=Oswald:wght@400;500;600&display=swap");

.mx-awards {
  --mx-awards-black: #030303;
  --mx-awards-cream: #f4eee6;
  --mx-awards-red: #c31420;
  --mx-awards-red-deep: #760c13;
  --mx-awards-divider: rgba(244, 238, 230, 0.12);
  --mx-awards-muted: rgba(244, 238, 230, 0.58);

  /* MAIN SIZE CONTROLS */
  --mx-awards-intro-height: 108px;
  --mx-awards-card-height: 165px;

  /* Controls the visual width of each award's text block. */
  --mx-awards-content-width: 270px;

  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--mx-awards-black);
  color: var(--mx-awards-cream);
}

.mx-awards,
.mx-awards *,
.mx-awards *::before,
.mx-awards *::after {
  box-sizing: border-box;
}

/* ==============================================================
   TOP INTRODUCTION BAND
   ============================================================== */

.mx-awards__intro {
  display: grid;
  grid-template-columns:
    minmax(145px, 0.65fr)
    minmax(360px, 1.8fr)
    minmax(260px, 1fr);

  align-items: center;
  width: 100%;
  height: var(--mx-awards-intro-height);
  min-height: 0;
  margin: 0;
  padding: 0 clamp(22px, 3vw, 52px);
  gap: clamp(20px, 2.2vw, 40px);

  background:
    linear-gradient(
      180deg,
      #1b0204 0%,
      #300406 42%,
      var(--mx-awards-red-deep) 100%
    );

  border: 0;
}

.mx-awards__intro-label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: clamp(18px, 2vw, 32px);
  border-right: 1px solid rgba(195, 20, 32, 0.58);
}

.mx-awards__intro-label span {
  margin: 0;
  color: rgba(244, 238, 230, 0.72);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mx-awards__intro-heading {
  min-width: 0;
}

.mx-awards__intro-heading h2 {
  margin: 0;
  color: var(--mx-awards-cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: none;
  white-space: nowrap;
}

.mx-awards__intro-copy p {
  margin: 0;
  max-width: 430px;
  color: rgba(244, 238, 230, 0.78);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 500;
  line-height: 1.4;
}

/* ==============================================================
   FOUR AWARD BOXES
   ============================================================== */

.mx-awards__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 1px;
  background: var(--mx-awards-divider);
}

/* Equal-width outer plaque. */
.mx-awards__card {
  min-width: 0;
  height: var(--mx-awards-card-height);
  min-height: 0;
  margin: 0;
  padding: 12px 20px 16px;
  background: var(--mx-awards-black);

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Narrow content block centered inside each quarter-width plaque. */
.mx-awards__card-inner {
  width: min(100%, var(--mx-awards-content-width));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mx-awards__number {
  display: block;
  margin: 0;
  color: rgba(244, 238, 230, 0.38);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mx-awards__rule {
  width: 42px;
  height: 2px;
  margin: 18px 0 13px;
  background: var(--mx-awards-red);
}

.mx-awards__award-title {
  margin: 0;
  color: var(--mx-awards-cream);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mx-awards__description {
  margin: 9px 0 0;
  color: var(--mx-awards-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.68rem, 0.76vw, 0.78rem);
  font-weight: 500;
  line-height: 1.35;
}

.mx-awards__year {
  margin: 5px 0 0;
  color: var(--mx-awards-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.68rem, 0.76vw, 0.78rem);
  font-weight: 500;
  line-height: 1.3;
}

/* ==============================================================
   MEDIUM DESKTOP / TABLET
   ============================================================== */

@media (max-width: 1050px) {
  .mx-awards__intro {
    height: auto;
    min-height: 100px;
    grid-template-columns:
      minmax(135px, 0.65fr)
      minmax(0, 1.7fr)
      minmax(230px, 1fr);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .mx-awards__intro-heading h2 {
    white-space: normal;
  }

  .mx-awards__card {
    height: auto;
    min-height: 155px;
  }

  .mx-awards__card-inner {
    width: min(100%, 250px);
  }
}

@media (max-width: 820px) {
  .mx-awards__intro {
    grid-template-columns: minmax(125px, 0.65fr) minmax(0, 1.8fr);
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mx-awards__intro-copy {
    grid-column: 1 / -1;
    padding-left: calc(125px + 18px);
  }

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

/* ==============================================================
   MOBILE
   ============================================================== */

@media (max-width: 560px) {
  .mx-awards__intro {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }

  .mx-awards__intro-label {
    min-height: 0;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(195, 20, 32, 0.58);
  }

  .mx-awards__intro-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    white-space: normal;
  }

  .mx-awards__intro-copy {
    grid-column: auto;
    padding-left: 0;
  }

  .mx-awards__list {
    grid-template-columns: 1fr;
  }

  .mx-awards__card {
    min-height: 145px;
    padding: 12px 20px 16px;
  }

  .mx-awards__card-inner {
    width: 100%;
  }
}
