/* ── Page fade-in ────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
body { animation: fadeIn .35s ease; }

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #000;
  --white:   #fff;
  --grey-light: #f5f5f5;
  --grey-mid:   #e0e0e0;
  --grey-text:  #3a3a3a;
  --grey-muted: #888;
  --teal:    #327b87;
  --blue:    #0170b9;
  --font: 'Open Sans', sans-serif;
  --header-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--grey-text);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}

.site-logo img { height: 50px; width: auto; image-rendering: -webkit-optimize-contrast; }

.site-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  transition: color .2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active { color: var(--teal); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--grey-light);
  transition: background .15s;
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--grey-light); }

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform .3s, opacity .3s;
}

/* ── Page Banner ─────────────────────────────────────────── */
.page-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 72px 32px 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal teal gradient wash */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50,123,135,.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Teal accent line under title */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--teal);
}

.page-banner h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  letter-spacing: .18em;
  position: relative;
}

.page-banner p {
  position: relative;
}

/* ── Layout: Sidebar + Grid ──────────────────────────────── */
.models-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
  align-items: start;
}

/* ── Sidebar Filters ─────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  padding-right: 24px;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--black);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.filter-group-title::after {
  content: '−';
  font-size: 16px;
  font-weight: 400;
  transition: transform .2s;
}

.filter-group.collapsed .filter-group-title::after { content: '+'; }

.filter-options { transition: none; }
.filter-group.collapsed .filter-options { display: none; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 13px;
  cursor: pointer;
  color: var(--grey-text);
}

.filter-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: var(--black);
  flex-shrink: 0;
}

.filter-option .count {
  margin-left: auto;
  font-size: 11px;
  color: var(--grey-muted);
}

.filter-option:hover { color: var(--black); }

/* Height range slider */
.height-range {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.height-range input[type="number"] {
  width: 64px;
  border: 1px solid var(--grey-mid);
  padding: 4px 8px;
  font-size: 13px;
  font-family: var(--font);
  border-radius: 2px;
}

.height-range input[type="number"]:focus {
  outline: none;
  border-color: var(--black);
}

.height-range span { font-size: 12px; color: var(--grey-muted); }

.btn-reset {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
  width: 100%;
}

.btn-reset:hover { background: var(--teal); }

/* ── Model Grid ──────────────────────────────────────────── */
.models-grid-wrap {}

.models-gender-section { margin-bottom: 64px; }

.models-gender-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
  border-top: 2px solid var(--black);
  border-bottom: 1px solid var(--grey-mid);
  padding: 16px 0 16px;
  margin-bottom: 28px;
}

.models-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-mid);
}

.models-count {
  font-size: 13px;
  color: var(--grey-muted);
}

.models-count strong { color: var(--black); }

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* ── Model Card ──────────────────────────────────────────── */
.model-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--grey-light);
  transition: transform .25s, box-shadow .25s;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.model-card-img {
  position: relative;
  padding-top: 133%; /* 3:4 portrait ratio */
  overflow: hidden;
  background: var(--grey-mid);
}

.model-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.model-card:hover .model-card-img img { transform: scale(1.05); }

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.model-card:hover .model-card-overlay { opacity: 1; }

.model-card-overlay-info {
  color: var(--white);
  font-size: 12px;
  line-height: 1.5;
}

.model-card-overlay-info .height {
  font-size: 11px;
  opacity: .8;
  margin-top: 2px;
}

.model-card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: 2px;
}

.model-card-footer {
  padding: 10px 12px;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
}

.model-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
}

.model-card-meta {
  font-size: 11px;
  color: var(--grey-muted);
  margin-top: 2px;
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-muted);
  font-size: 14px;
}

/* ── Editorial Statement ─────────────────────────────────── */
.editorial-statement {
  background: #111;
  padding: 96px 24px;
  text-align: center;
}
.editorial-statement-inner {
  max-width: 740px;
  margin: 0 auto;
}
.editorial-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}
.editorial-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 0;
}
.editorial-headline em {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.65);
}
.editorial-rule {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: 32px auto;
}
.editorial-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Press Strip ─────────────────────────────────────────── */
.press-strip {
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 40px 24px;
  text-align: center;
}
.press-strip-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 24px;
}
.press-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.press-divider {
  color: var(--grey-mid);
  font-size: 18px;
}
.press-name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--black);
  opacity: 1;
  letter-spacing: .01em;
}
.press-name--bazaar { font-size: 22px; }
.press-name--elle   { font-size: 28px; font-style: normal; font-weight: 700; letter-spacing: .12em; }
.press-name--gq     { font-size: 26px; font-style: normal; font-weight: 700; letter-spacing: .08em; }
.press-name--vogue  { font-size: 22px; font-style: normal; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.85);
  padding: 60px 32px 32px;
  margin-top: 64px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  opacity: .8;
  max-width: 340px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  opacity: .8;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: 1; }

.footer-contact p {
  font-size: 13px;
  margin-bottom: 6px;
  opacity: .85;
}

.footer-contact a { opacity: .85; transition: opacity .2s; }
.footer-contact a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: .6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Scroll to top ───────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: background .2s, opacity .2s;
}

#scroll-top.visible { display: flex; }
#scroll-top:hover { background: var(--teal); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .models-layout {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .sidebar {
    position: static;
    padding-right: 0;
    border: 1px solid var(--grey-mid);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 24px;
  }

  .sidebar-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    margin-bottom: 12px;
  }

  .sidebar-inner.collapsed { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Sidebar toggle btn (desktop hidden) ─────────────────── */
.sidebar-toggle-btn { display: none; }

@media (max-width: 640px) {
  .site-header { padding: 0 16px; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; }

  .nav-dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 16px;
  }

  .menu-toggle { display: flex; }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-main { padding-bottom: 0; }

.about-section { padding: 64px 32px; }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-inner--centered {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: .1em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Teal underline accent on centered headings */
.section-heading--accent::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--teal);
  margin: 10px auto 0;
}

/* Dark section variant */
.section-dark {
  background: #111 !important;
  color: rgba(255,255,255,.85);
}

.section-dark .section-heading,
.section-dark h3 { color: var(--white); }

.section-dark .why-card {
  background: #1a1a1a;
  border-color: #2e2e2e;
  color: rgba(255,255,255,.8);
}

.section-dark .why-card:hover {
  border-color: var(--teal);
  background: #1f1f1f;
}

.section-dark .why-card h3 { color: var(--white); }
.section-dark .why-card p { color: rgba(255,255,255,.55); }
.section-dark .about-text p { color: rgba(255,255,255,.75); }

.section-dark .region-card {
  background: #1a1a1a;
  border-color: #2e2e2e;
}

.section-dark .region-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.section-dark .region-card--cta { background: #222; }
.section-dark .region-name { color: var(--white); }
.section-dark .region-count { color: var(--teal); }
.section-dark .region-desc { color: rgba(255,255,255,.5); }
.section-dark .region-link { color: rgba(255,255,255,.7); }
.section-dark .region-link:hover { color: var(--teal); }

.about-text p { font-size: 14px; line-height: 1.8; color: var(--grey-text); }

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid var(--grey-mid);
  border-top: 3px solid transparent;
  text-align: center;
  transition: border-top-color .25s, box-shadow .25s, transform .25s;
}

.why-card:hover {
  border-top-color: var(--teal);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

.why-icon { font-size: 28px; margin-bottom: 12px; }

.why-card h3 {
  font-size: 13px;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.why-card p { font-size: 13px; color: var(--grey-muted); line-height: 1.6; }

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

.service-tag:hover { background: var(--black); color: var(--white); }

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 2px;
  border: 2px solid var(--black);
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}

.btn-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .about-section { padding: 40px 16px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   WORK PAGE
══════════════════════════════════════════════════════════ */
.work-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 24px;
}

.work-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.work-filter-btn {
  padding: 8px 20px;
  background: none;
  border: 2px solid var(--grey-mid);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  border-radius: 2px;
  color: var(--grey-text);
  transition: background .2s, border-color .2s, color .2s;
}

.work-filter-btn:hover,
.work-filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--grey-light);
  aspect-ratio: 3/4;
}

.work-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.work-item:hover .work-item-img { transform: scale(1.06); }

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s;
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-label {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */

/* Video background hero */
.contact-video-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}
.contact-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 177.78vh);
  height: max(56.25vw, 100%);
  border: 0;
}
.contact-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .38);
}
.contact-video-overlay h1 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.contact-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.contact-grid--single {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-grid--single { grid-template-columns: 1fr; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--grey-mid);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--grey-text);
  border-radius: 2px;
  transition: border-color .2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-submit {
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}

.contact-submit:hover { background: var(--teal); }

.form-note {
  font-size: 12px;
  color: var(--grey-muted);
  line-height: 1.6;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-muted);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-text);
}

.contact-detail a { color: var(--grey-text); transition: color .2s; }
.contact-detail a:hover { color: var(--teal); }

.contact-social-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.btn-line-lg, .btn-whatsapp-lg {
  display: inline-block;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 3px;
  color: var(--white);
  transition: opacity .2s;
}

.btn-line-lg:hover, .btn-whatsapp-lg:hover { opacity: .85; }
.btn-line-lg { background: #06C755; }
.btn-whatsapp-lg { background: #25D366; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-main { padding: 40px 16px 60px; }
}

/* ══════════════════════════════════════════════════════════
   SEARCH + SORT TOOLBAR (index / available)
══════════════════════════════════════════════════════════ */
.models-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
}

.model-search-input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border: 1px solid var(--grey-mid);
  font-family: var(--font);
  font-size: 13px;
  border-radius: 2px;
  color: var(--grey-text);
  background: var(--white);
  transition: border-color .2s;
}

.model-search-input:focus {
  outline: none;
  border-color: var(--black);
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--grey-muted);
  pointer-events: none;
}

.model-sort-select {
  padding: 8px 12px;
  border: 1px solid var(--grey-mid);
  font-family: var(--font);
  font-size: 13px;
  border-radius: 2px;
  color: var(--grey-text);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s;
}

.model-sort-select:focus { outline: none; border-color: var(--black); }

/* ══════════════════════════════════════════════════════════
   FLOAT CONTACT BUTTONS
══════════════════════════════════════════════════════════ */
.float-contact {
  position: fixed;
  bottom: 88px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 90;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}

.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.float-btn--line { background: #06C755; }
.float-btn--wa { background: #25D366; }
.float-btn--fb { background: #1877F2; }

/* ══════════════════════════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-line {
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
  margin-bottom: 6px;
}

.skeleton-line--name { width: 70%; }
.skeleton-line--meta { width: 45%; }

/* ══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://www.mpmodelsbkk.com/wp-content/uploads/2026/01/43-scaled-e1768456025562-235x300.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 56px);
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: background .2s, color .2s, border-color .2s;
}

.hero-btn--primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.hero-btn--primary:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.hero-btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn--secondary:hover { background: var(--white); color: var(--black); }

.featured-section { padding: 64px 24px; }

.featured-inner { max-width: 1300px; margin: 0 auto; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: auto;
}

@media (max-width: 1000px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }

.stats-strip {
  background: var(--black);
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 16px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .02em;
  line-height: 1;
}

.stat-label-sm {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

.services-strip { padding: 64px 24px; background: var(--grey-light); }

.services-strip-inner { max-width: 900px; margin: 0 auto; }

.services-strip-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
}

.service-icon { font-size: 28px; }

/* ── Latest Work / Press section ────────────────────────── */
.press-section {
  background: var(--white);
  padding: 80px 24px 88px;
  border-top: 1px solid var(--grey-mid);
}
.press-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.press-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 16px;
}
.press-heading {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
}
.press-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--grey-text);
}
.press-rule {
  width: 32px;
  height: 1px;
  background: var(--black);
  margin: 24px auto 40px;
}
.press-feed-placeholder {
  border: 1px solid var(--grey-mid);
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity .2s;
}
.press-ig-link:hover { opacity: .55; }

/* ══════════════════════════════════════════════════════════
   AVAILABLE PAGE — dot indicator
══════════════════════════════════════════════════════════ */
.available-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1a8a3e;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ══════════════════════════════════════════════════════════
   FORM SELECT (shared across casting / workshops)
══════════════════════════════════════════════════════════ */
.form-select {
  border: 1px solid var(--grey-mid);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--grey-text);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s;
  width: 100%;
}
.form-select:focus { outline: none; border-color: var(--black); }

.gender-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: var(--grey-text);
}

.check-option input { accent-color: var(--black); }

/* ══════════════════════════════════════════════════════════
   CASTING PAGE
══════════════════════════════════════════════════════════ */
.casting-main { padding-bottom: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}

.faq-list { list-style: none; border-top: 1px solid var(--grey-mid); }

.faq-item { border-bottom: 1px solid var(--grey-mid); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .02em;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--grey-muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .2s;
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  display: none;
  padding: 0 0 18px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-text);
}

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RATES PAGE
══════════════════════════════════════════════════════════ */
.rates-main { padding-bottom: 0; }

.btn-print-rates {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--black);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 2px solid var(--black);
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-print-rates:hover { background: var(--black); color: var(--white); }

.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  border: 2px solid var(--grey-mid);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}

.price-card:hover {
  border-color: var(--black);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.price-card.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.price-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.price-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.price-duration {
  font-size: 12px;
  color: var(--grey-muted);
  margin-bottom: 0;
}

.price-card.featured .price-duration { color: rgba(255,255,255,.55); }

.price-amount {
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0;
  letter-spacing: -.01em;
}

.price-currency {
  font-size: 16px;
  vertical-align: super;
  font-weight: 400;
}

.price-list {
  list-style: none;
  font-size: 13px;
  line-height: 2;
  flex: 1;
  color: var(--grey-text);
}

.price-card.featured .price-list { color: rgba(255,255,255,.8); }

.price-list li::before {
  content: '✓  ';
  color: var(--teal);
}

.price-card.featured .price-list li::before { color: rgba(255,255,255,.5); }

.price-cta { margin-top: 24px; }

@media (max-width: 900px) {
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .rates-grid { grid-template-columns: 1fr; }
}

/* Print: rates page */
@media print {
  .site-header, .site-footer, .float-contact, #scroll-top,
  .rates-cta-section, .btn-print-rates, .page-banner p { display: none !important; }
  body { animation: none; }
}

/* ══════════════════════════════════════════════════════════
   WORKSHOPS PAGE
══════════════════════════════════════════════════════════ */
.workshops-main { padding-bottom: 0; }

.workshop-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.workshop-table th {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
}

.workshop-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-mid);
  vertical-align: top;
}

.workshop-table tbody tr:nth-child(even) { background: var(--grey-light); }
.workshop-table tbody tr:hover { background: #ebebeb; }

.workshop-cta-strip {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

/* ══════════════════════════════════════════════════════════
   REGIONS PAGE
══════════════════════════════════════════════════════════ */
.regions-main { padding-bottom: 0; }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}

.region-card {
  border: 1px solid var(--grey-mid);
  border-radius: 4px;
  padding: 32px 24px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.region-card:hover {
  border-color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.region-card--cta {
  background: var(--grey-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.region-card--cta .region-icon { font-size: 40px; }

.region-icon { font-size: 32px; margin-bottom: 12px; }

.region-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.region-count {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}

.region-desc {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.region-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  transition: color .2s;
}

.region-link:hover { color: var(--teal); }

@media (max-width: 900px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .region-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   APPLY PAGE — Luxury Redesign
══════════════════════════════════════════════════════════ */
.apply-main { padding-bottom: 0; }

/* Hero */
.apply-hero {
  background: var(--black);
  text-align: center;
  padding: 110px 24px 90px;
  position: relative;
  overflow: hidden;
}
.apply-hero::after {
  content: 'APPLY';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(80px, 20vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .15em;
}
.apply-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.apply-hero-heading {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .02em;
  margin: 0;
}
.apply-hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.55);
}
.apply-hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: 36px auto;
}
.apply-hero-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* What We Look For */
.apply-criteria {
  background: var(--white);
  padding: 100px 24px;
  border-bottom: 1px solid var(--grey-mid);
}
.apply-criteria-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.apply-criteria-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 56px;
}
.apply-criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-mid);
}
.apply-criteria-item {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--grey-mid);
}
.apply-criteria-item:first-child { padding-left: 0; }
.apply-criteria-item:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.apply-criteria-item:not(:first-child):not(:last-child) { padding-left: 40px; }
.apply-criteria-num {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--grey-muted);
  margin-bottom: 20px;
}
.apply-criteria-line {
  width: 28px;
  height: 1px;
  background: var(--black);
  margin-bottom: 20px;
}
.apply-criteria-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}
.apply-criteria-text {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.8;
}

/* Form section */
.apply-form-section {
  background: #fafafa;
  padding: 100px 24px 80px;
}
.apply-form-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.apply-form .form-row {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .apply-form .form-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .apply-form .form-row { grid-template-columns: 1fr; }
}
.apply-form-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 16px;
}
.apply-form-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.apply-form-rule {
  width: 40px;
  height: 1px;
  background: var(--grey-mid);
  margin: 32px 0 40px;
}

/* Refined form inputs */
.apply-form .form-group label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
}
.apply-form .form-group input,
.apply-form .form-group textarea,
.apply-form .form-select {
  border: none;
  border-bottom: 1px solid var(--grey-mid);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: border-color .2s;
}
.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus,
.apply-form .form-select:focus {
  border-bottom-color: var(--black);
  outline: none;
  box-shadow: none;
}
.apply-form .contact-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 18px 48px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.apply-form .contact-submit:hover { background: #1a1a1a; }

.form-file {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px dashed var(--grey-mid);
  padding: 12px 0;
  font-family: var(--font);
  font-size: 13px;
  color: var(--grey-muted);
  cursor: pointer;
  background: transparent;
  transition: border-color .2s;
}
.form-file:hover { border-bottom-color: var(--black); }

/* CTA strip */
.apply-cta-strip {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.apply-cta-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.apply-cta-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 40px;
}
.apply-cta-heading em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}
.apply-cta-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 16px 48px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.apply-cta-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}

/* old teal strip override */
.roster-cta-strip { background: var(--black); }

@media (max-width: 900px) {
  .apply-criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-criteria-item { border-right: none; border-bottom: 1px solid var(--grey-mid); padding: 36px 0 !important; }
  .apply-criteria-item:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .apply-criteria-grid { grid-template-columns: 1fr; }
  .apply-hero { padding: 80px 24px 64px; }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
══════════════════════════════════════════════════════════ */
.testimonials-main { padding-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  border: 1px solid var(--grey-mid);
  border-radius: 4px;
  padding: 32px 24px 24px;
  position: relative;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 64px;
  color: var(--teal);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  color: var(--grey-text);
  margin-bottom: 20px;
  flex: 1;
  padding-top: 8px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
}

.testimonial-company {
  font-size: 12px;
  color: var(--grey-muted);
  margin-top: 2px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Dark testimonial card variant */
.testimonials-grid--dark .testimonial-card {
  background: #1a1a1a;
  border-color: #2e2e2e;
  color: rgba(255,255,255,.8);
}

.testimonials-grid--dark .testimonial-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.testimonials-grid--dark .testimonial-quote { color: rgba(255,255,255,.75); }
.testimonials-grid--dark .testimonial-author { color: var(--white); }
.testimonials-grid--dark .testimonial-company { color: rgba(255,255,255,.4); }


/* ╔══════════════════════════════════════════════════════════╗
   ║  EDITORIAL UPGRADE — High-End Agency Refinements        ║
   ║  Inspired by IMG Models / Ford Models aesthetic          ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Serif variable ─────────────────────────────────────── */
:root {
  --serif: 'Playfair Display', Georgia, serif;
}

/* ── Display headings → editorial serif ─────────────────── */
h1, h2 {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: .01em;
}

/* h3/h4 stay as compact Open Sans labels */
h3 {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Navigation — refined minimal ───────────────────────── */
.site-nav a {
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--black);
  opacity: .4;
}

.site-header {
  border-bottom-color: #ebebeb;
}

/* ── Page Banner — pure cinematic black ─────────────────── */
.page-banner::before {
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, transparent 100%);
}

.page-banner::after {
  background: rgba(255,255,255,.3);
  width: 28px;
  height: 2px;
}

.page-banner h1 {
  font-style: italic;
  letter-spacing: .04em;
  font-weight: 700;
}

/* ── Section headings — refined ─────────────────────────── */
.section-heading {
  letter-spacing: .02em;
  line-height: 1.2;
}

.section-heading--accent::after {
  background: var(--black);
  width: 28px;
  height: 1px;
  margin-top: 16px;
}

/* ── CTA button — square, more editorial ────────────────── */
.btn-cta {
  border-radius: 0;
  letter-spacing: .2em;
  font-size: 11px;
  padding: 14px 36px;
}

.btn-cta:hover {
  background: #222;
  border-color: #222;
  transform: none;
}

/* ── Stats strip — elegant, not loud ────────────────────── */
.stats-strip {
  background: #fafafa;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.stat-number {
  font-family: var(--serif);
  font-style: italic;
  color: var(--black);
  font-size: clamp(40px, 5vw, 64px);
}

.stat-label-sm {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-top: 4px;
}

/* ── Model card name — editorial serif ──────────────────── */
.model-card-name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .01em;
  font-weight: 700;
}

.model-card-meta {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* ── Model card hover — name-only fade ──────────────────── */
.model-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
}

/* ── Form submit button ──────────────────────────────────── */
.contact-submit {
  border-radius: 0;
  letter-spacing: .16em;
  font-size: 11px;
}

.contact-submit:hover { background: #222; }

/* ── Footer — near-black, minimal ───────────────────────── */
.site-footer {
  background: #080808;
}

.footer-bottom {
  border-top-color: #1a1a1a;
  font-size: 11px;
  letter-spacing: .06em;
}

/* ── Dark section — deeper black ────────────────────────── */
.section-dark {
  background: #0d0d0d;
}

/* ── Why cards in dark — refined borders ────────────────── */
.section-dark .why-card {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}

.section-dark .why-card h3 {
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 10px;
}

/* ── Testimonial dark hover ──────────────────────────────── */
.testimonials-grid--dark .testimonial-card:hover {
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}

/* ── Work filter buttons — square ───────────────────────── */
.work-filter-btn {
  border-radius: 0;
  letter-spacing: .1em;
  font-size: 11px;
}

/* ── Region cards in dark ────────────────────────────────── */
.section-dark .region-card .region-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .01em;
}

/* ── Hero buttons — square, minimal ─────────────────────── */
.hero-btn {
  border-radius: 0;
  font-size: 11px;
  letter-spacing: .18em;
}

/* ── Apply page step numbers ─────────────────────────────── */
.apply-step-num {
  font-family: var(--serif);
  font-style: italic;
}

/* ── Testimonial quote — larger opening mark ────────────── */
.testimonial-card::before {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--black);
  opacity: .06;
}

.testimonials-grid--dark .testimonial-card::before {
  color: var(--white);
  opacity: .08;
}

/* ── Service tags — minimal borders ─────────────────────── */
.service-tag {
  border-radius: 0;
  letter-spacing: .1em;
  font-size: 11px;
}

/* ── Scroll top button ───────────────────────────────────── */
#scroll-top {
  border-radius: 0;
  font-size: 16px;
  letter-spacing: .04em;
}

/* ── Showreel Section ───────────────────────────────────── */
.showreel-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
}

/* YouTube iframe covers full viewport */
.showreel-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.showreel-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Force 16:9 to always cover the container */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
}

/* Heavy dark overlay — strong and cinematic */
.showreel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1;
}

/* Text content */
.showreel-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 900px;
}

.showreel-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}

.showreel-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(52px, 9vw, 120px);
  color: var(--white);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 40px;
  font-weight: 700;
}

.showreel-rule {
  width: 48px;
  height: 2px;
  background: var(--white);
  margin-bottom: 40px;
  opacity: .4;
}

.showreel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}

.showreel-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.showreel-btn-icon {
  font-size: 14px;
  opacity: .7;
}

/* Year stamp — bottom-right */
.showreel-year {
  position: absolute;
  bottom: 32px;
  right: 7%;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(255,255,255,.06);
  line-height: 1;
  letter-spacing: -.02em;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  .showreel-content { padding: 0 5%; }
  .showreel-title { font-size: clamp(40px, 12vw, 72px); }
}

/* ── Photo Slideshow (homepage) ─────────────────────────── */
.photo-show {
  position: relative;
  width: 100%;
  height: 90vh;
  background: var(--black);
  overflow: hidden;
}
.photo-show-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.photo-show-slide.active {
  opacity: 1;
}
.photo-show-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
}
.photo-show-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.ps-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.ps-dot.active {
  background: var(--white);
  transform: scale(1.4);
}
@media (max-width: 640px) {
  .photo-show { height: 60vh; }
}

/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.25) 55%,
    transparent 100%
  );
}

.hero-slide-content {
  position: absolute;
  bottom: 13%;
  left: 7%;
  color: var(--white);
  max-width: 480px;
}

.hero-slide-tag {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.hero-slide-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: .01em;
  line-height: .95;
  margin-bottom: 24px;
}

.hero-slide-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
}

.hero-slide-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.slider-arrow:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.slider-arrow--prev { left: 24px; }
.slider-arrow--next { right: 24px; }

/* Dot nav */
.slider-dots {
  position: absolute;
  bottom: 28px;
  right: 7%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, height .3s;
}

.slider-dot.active {
  background: var(--white);
  height: 40px;
}

/* Slide counter */
.slider-counter {
  position: absolute;
  bottom: 28px;
  left: 7%;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .12em;
  z-index: 10;
}

.slider-counter strong { color: var(--white); }

/* Mobile */
@media (max-width: 640px) {
  .hero-slide-content { left: 5%; bottom: 16%; }
  .slider-arrow { display: none; }
  .slider-dots { right: 5%; }
  .slider-counter { left: 5%; }
}

/* ── Team Grid (About page) ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #1e1e1e;
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-photo--placeholder {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
}

.team-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}

.team-nickname {
  font-weight: 400;
  opacity: .65;
}

.team-role {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}

.team-note {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-style: italic;
  line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(5, 1fr); gap: 20px 12px; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
}

/* ── Who We Are section (luxury centered) ───────────────── */
.who-section {
  background: var(--black);
  padding: 64px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.03) 0%, transparent 70%);
  pointer-events: none;
}
.who-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.who-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}
.who-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  margin: 0;
}
.who-rule {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.3);
  margin: 40px auto;
}
.who-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}
.who-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-body p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Available Models — luxury hero banner ──────────────── */
.avail-hero {
  background: var(--black);
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.avail-hero::after {
  content: 'AVAILABLE';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.avail-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.avail-hero-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
  margin: 0;
  white-space: nowrap;
}
.avail-hero-heading em {
  font-style: normal;
  font-weight: 700;
  color: var(--white);
}
.avail-hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 36px auto;
}
.avail-hero-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Available layout — refined sidebar + grid */
.avail-layout {
  background: #f9f9f9;
}
.avail-layout .sidebar {
  background: var(--white);
  border-right: 1px solid var(--grey-mid);
  padding: 40px 28px;
}
.avail-layout .sidebar-title {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 32px;
  font-weight: 400;
}
.avail-layout .filter-group-title {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 12px;
}
.avail-layout .models-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
}
.avail-layout .model-card {
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
  background: var(--white);
}
.avail-layout .model-card:hover {
  box-shadow: none;
}
.avail-layout .model-card-img img {
  filter: grayscale(10%);
  transition: filter .4s ease, transform .5s ease;
}
.avail-layout .model-card:hover .model-card-img img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.avail-layout .model-card-footer {
  background: var(--white);
  border-top: none;
  padding: 14px 14px 18px;
}
.avail-layout .model-card-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--black);
}
.avail-layout .model-card-meta {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-top: 4px;
}
.avail-layout .model-card-tag {
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 4px 8px;
}
.avail-layout .models-toolbar {
  border-bottom: 1px solid var(--grey-mid);
  padding-bottom: 16px;
  margin-bottom: 2px;
}
.avail-layout .model-search-input {
  border: none;
  border-bottom: 1px solid var(--grey-mid);
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  letter-spacing: .06em;
}
.avail-layout .model-search-input:focus {
  border-bottom-color: var(--black);
  outline: none;
  box-shadow: none;
}
.avail-layout .model-sort-select {
  border: none;
  border-bottom: 1px solid var(--grey-mid);
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  letter-spacing: .06em;
}
@media (max-width: 640px) {
  .avail-hero { padding: 72px 24px 56px; }
}

/* ── Why Choose Us — luxury redesign ───────────────────── */
.why-luxury-section {
  background: var(--white);
  padding: 120px 24px 120px;
  position: relative;
}
.why-luxury-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-luxury-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.why-luxury-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 32px rgba(255,255,255,.15);
  letter-spacing: .01em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 80px;
}
.why-luxury-heading em {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.6);
}
.why-luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-mid);
}
.why-luxury-item {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--grey-mid);
  padding-right: 40px;
}
.why-luxury-item:first-child { padding-left: 0; }
.why-luxury-item:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.why-luxury-item:not(:first-child):not(:last-child) { padding-left: 40px; }
.why-luxury-num {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--grey-muted);
  margin-bottom: 24px;
}
.why-luxury-line {
  width: 32px;
  height: 1px;
  background: var(--black);
  margin-bottom: 24px;
}
.why-luxury-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.why-luxury-text {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .why-luxury-grid { grid-template-columns: repeat(2, 1fr); }
  .why-luxury-item { border-right: none; border-bottom: 1px solid var(--grey-mid); padding: 40px 0 !important; }
  .why-luxury-item:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .why-luxury-grid { grid-template-columns: 1fr; }
}

/* ── Our Clients section ─────────────────────────────────── */
.clients-section {
  background: var(--white);
  padding: 100px 24px;
  border-top: 1px solid var(--grey-mid);
}
.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.clients-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 16px;
}
.clients-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
}
.clients-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--grey-text);
}
.clients-rule {
  width: 40px;
  height: 1px;
  background: var(--grey-mid);
  margin: 32px auto 56px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.client-logo:hover { background: transparent; }
.client-logo img {
  max-width: 140px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .85;
  transition: opacity .3s, filter .3s;
}
.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Work page combined section ─────────────────────────── */
.work-combined-section {
  background: url('../images/bg-standard-2026.jpg') center top / cover no-repeat;
  padding: 96px 24px;
  text-align: center;
  position: relative;
}
.work-combined-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}

.work-combined-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.work-combined-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 64px 0;
}

/* keep old selector working for inner elements */
.work-ext-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* MP monogram divider */
.work-ext-monogram {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}

.work-ext-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.work-ext-badge {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  flex-shrink: 0;
  color: var(--white);
}

.work-ext-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-style: normal;
  margin: 0;
}

/* YouTube button */
.work-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  width: 100%;
  max-width: 420px;
  justify-content: center;
  transition: background .2s;
}

.work-yt-btn:hover { background: #222; }

/* Models.com button */
.work-models-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  width: 100%;
  max-width: 420px;
  transition: background .2s, color .2s;
}

.work-models-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* Logos row */
.work-ext-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
  gap: 24px;
}

.work-ext-modelsdot {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  letter-spacing: -.01em;
}

.work-ext-agency img {
  height: 28px;
  width: auto;
}

/* ── Editorial services row (homepage) ──────────────────── */
.services-editorial-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 20px);
  color: var(--black);
  letter-spacing: .01em;
  line-height: 1.4;
}

.services-divider {
  color: var(--grey-muted);
  font-style: normal;
  font-size: 20px;
}

/* ── Mobile: keep headings readable ─────────────────────── */
@media (max-width: 640px) {
  h1, h2 { letter-spacing: .01em; }
  .page-banner h1 { font-style: italic; }
  .services-editorial-row { font-size: 16px; gap: 10px; }
  .services-divider { display: none; }
}
