/* ============================================================
   MAFIKENG FASHION HUB — main.css
   Merged from style.css + style2.css (duplicates removed,
   conflicts resolved, mobile bugs fixed)
   ============================================================ */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark:  #9B7A25;
  --brown:      #8B5E2A;
  --dark:       #141414;
  --mid:        #2a2a2a;
  --bg:         #f5f3ee;
  --white:      #ffffff;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
  color: rgb(14, 14, 14);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo group — both logos sit here, left-aligned */
.nav-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* Desktop nav links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-menu a:hover { color: #666666; }

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #000000;
  transition: 0.3s;
  display: block;
}

/* Hamburger → X */
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 35% at 50% 0%,  rgba(201,168,76,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 60% 25% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero logo block ── */
.logo-section {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 5vw 1.4rem;
  opacity: 0;
  transform: translateY(20px);
}

.logo-rule {
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

.logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.2rem;
  gap: 0.45rem;
}

.logo-monogram {
  width: clamp(52px, 7vw, 78px);
  height: auto;
}

.logo-text {
  font-weight: 500;
  font-size: clamp(0.52rem, 1vw, 0.72rem);
  letter-spacing: 0.38em;
  color: var(--dark);
  text-align: center;
  line-height: 1.75;
}

/* ── Hero headline ── */
.headline {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0.8rem 2rem 0;
  opacity: 0;
  transform: translateY(18px);
}

.headline h1 {
  font-weight: 900;
  font-size: clamp(1.6rem, 5.2vw, 4.2rem);
  color: var(--dark);
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-transform: uppercase;
}

.headline h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 900;
}

.headline .sub {
  margin-top: 0.55rem;
  font-size: clamp(0.58rem, 1.2vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--mid);
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Event date display ── */
.date-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.date-rule:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.date-text {
  font-size: clamp(0.78rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Middle row: models + countdown ── */
.middle-row {
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 0 0;
}

/* Model stages — absolutely positioned on desktop so they
   overlap the countdown from the sides */
.model-stage {
  position: absolute;
  bottom: 0;
  width: clamp(260px, 32vw, 520px);
  height: clamp(480px, 88vh, 950px);
  flex-shrink: 0;
  overflow: visible;
  pointer-events: none;
  z-index: -9999;
}

.model-stage img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.18));
  transition: filter 0.5s ease;
}

.model-stage.left-stage  { left: -4vw; }
.model-stage.right-stage { right: -4vw; }
.model-stage img.active  { opacity: 1; }

/* ── Countdown ── */
.countdown-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5vw;
  opacity: 0;
  transform: scale(0.94);
}

.countdown-box {
  position: relative;
  border: 1.5px solid var(--gold);
  padding: clamp(1.2rem, 2.8vw, 2.2rem) clamp(1.8rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}

.countdown-box::before,
.countdown-box::after {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--gold-dark);
  border-style: solid;
  opacity: 0.65;
}
.countdown-box::before { top: -3px;    left: -3px;  border-width: 2px 0 0 2px; }
.countdown-box::after  { bottom: -3px; right: -3px; border-width: 0 2px 2px 0; }

.countdown-digits {
  display: flex;
  align-items: flex-start;
}

.digit-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(0.4rem, 1.2vw, 1.1rem);
}

.digit-number {
  font-weight: 900;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: clamp(1.8rem, 5vw, 4.5rem);
  text-align: center;
}

.digit-number.flip {
  animation: flipUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes flipUp {
  0%   { transform: translateY(0)    scale(1); }
  50%  { transform: translateY(-10px) scale(1.08); }
  100% { transform: translateY(0)    scale(1); }
}

.digit-label {
  font-size: clamp(0.48rem, 0.85vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.6;
}

.digit-sep {
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.05em;
  opacity: 0.75;
}

/* ── Bottom gold bar ── */
.bottom-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  background: linear-gradient(90deg, #7a5c10, var(--gold), #c9a84c, var(--gold), #7a5c10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 4.5rem);
  padding: clamp(0.75rem, 1.6vw, 1.15rem) 2rem;
  margin-top: auto;
  opacity: 0;
  transform: translateY(20px);
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.info-icon {
  width: clamp(26px, 3.2vw, 38px);
  height: clamp(26px, 3.2vw, 38px);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 54%; height: 54%;
  fill: none; stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-text {
  font-size: clamp(0.68rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bar-divider {
  width: 1px;
  height: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,0.28);
}

/* ── Tagline ── */
.tagline {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0.55rem 1rem 0.65rem;
  font-size: clamp(0.52rem, 0.95vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.36em;
  color: var(--dark);
  text-transform: uppercase;
  background: var(--bg);
  border-top: 0.5px solid rgba(201,168,76,0.2);
  opacity: 0;
}


/* ============================================================
   MODELS SECTION & CARDS
   ============================================================ */
.models-section {
  padding: 80px 5%;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  width: 100%;
  box-sizing: border-box;
}

.model-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  background: #111;
  min-width: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.model-card.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.model-card:nth-child(1)  { transition-delay: 0.05s; }
.model-card:nth-child(2)  { transition-delay: 0.12s; }
.model-card:nth-child(3)  { transition-delay: 0.19s; }
.model-card:nth-child(4)  { transition-delay: 0.26s; }
.model-card:nth-child(5)  { transition-delay: 0.08s; }
.model-card:nth-child(6)  { transition-delay: 0.15s; }
.model-card:nth-child(7)  { transition-delay: 0.22s; }
.model-card:nth-child(8)  { transition-delay: 0.29s; }
.model-card:nth-child(9)  { transition-delay: 0.06s; }
.model-card:nth-child(10) { transition-delay: 0.13s; }
.model-card:nth-child(11) { transition-delay: 0.20s; }
.model-card:nth-child(12) { transition-delay: 0.27s; }
.model-card:nth-child(13) { transition-delay: 0.09s; }
.model-card:nth-child(14) { transition-delay: 0.16s; }
.model-card:nth-child(15) { transition-delay: 0.23s; }
.model-card:nth-child(16) { transition-delay: 0.30s; }

.model-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.model-card:hover img { transform: scale(1.06); }

.model-card-content {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.model-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.model-card-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

.model-card-content button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 9px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s;
}
.model-card-content button:hover { background: #f0cc55; transform: translateY(-2px); }

/* ── Model modal ── */
.model-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
}

.modal-content {
  background: #111;
  width: 100%;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  position: relative;
  min-height: 600px;
}

.modal-gallery {
  display: block !important;
  columns: 2 !important;
  column-gap: 10px;
  width: 60%;
}

.modal-gallery img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  break-inside: avoid;
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.modal-gallery img:hover { transform: scale(1.02); }

.modal-text {
  color: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.close-modal {
  position: fixed;
  top: 20px; right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.close-modal:hover { opacity: 1; }

.reveal-up   { opacity: 0; transform: translateY(80px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }


/* ============================================================
   ABOUT SECTION (Summit About)
   ============================================================ */
.fashion-about-text h2 { font-size: 3rem; }

.summit-about {
  position: relative;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: stretch;
  min-height: 90vh;
  overflow: hidden;
  padding: clamp(3rem, 8vh, 7rem) clamp(1.5rem, 6vw, 6rem);
}

/* Left panel */
.sa-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  padding-right: clamp(1rem, 4vw, 4rem);
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateX(-40px);
}

.sa-heading-block {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.sa-left-border {
  width: 4px;
  background: var(--dark);
  border-radius: 2px;
  height: 0;
  flex-shrink: 0;
  margin-top: 0.4rem;
  transform-origin: top;
}

.sa-heading-inner { display: flex; flex-direction: column; }

.sa-script {
  font-family: 'Dancing Script', 'Segoe Script', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.sa-big-title {
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  color: var(--gold);
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0;
}

.sa-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0 1rem;
  opacity: 0;
}

.sa-mh-logo { width: clamp(48px, 7vw, 80px); height: auto; object-fit: contain; }

.sa-brand-label {
  font-size: clamp(0.52rem, 0.9vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--mid);
  text-transform: uppercase;
  line-height: 1.7;
}

.sa-divider {
  width: clamp(200px, 55%, 420px);
  height: 1px;
  background: var(--dark);
  margin: 0.9rem 0;
  transform-origin: left;
  transform: scaleX(0);
}

.sa-divider--short { width: clamp(140px, 58%, 220px); margin: 1.4rem 0 1.2rem; }

.sa-pillars {
  font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--dark);
  text-transform: uppercase;
  opacity: 0;
  margin-bottom: 1.2rem;
}

.sa-quote {
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 1.4rem;
  opacity: 0;
}

.sa-gold { color: var(--gold); }

.sa-body { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 0.5rem; opacity: 0; }

.sa-body p {
  font-size: clamp(0.48rem, 1.25vw, 0.88rem);
  color: #333;
  line-height: 1.75;
}

.sa-pillars-grid { display: flex; margin-top: 0.5rem; opacity: 0; }

.sa-pillar-col {
  flex: 1;
  padding: 1rem 1rem 0.5rem 0.4rem;
  border-right: 2px solid #ddd;
}
.sa-pillar-col:last-child { border-right: none; }

.sa-pillar-col strong {
  display: block;
  font-size: clamp(0.5rem, 0.75vw, 0.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.sa-pillar-col p {
  font-size: clamp(0.48rem, 0.72vw, 0.62rem);
  color: #555;
  line-height: 1.6;
}

/* Right — three staggered model images */
.sa-models {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  min-height: 600px;
}

.sa-model {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  object-position: top center;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.sa-model--1 { left: 0;   width: 50%; height: 95%;  z-index: 3; transform: translateX(-60px); }
.sa-model--2 { left: 23%; width: 50%; height: 100%; z-index: 4; transform: translateX(-20px); }
.sa-model--3 { right: -3%; width: 48%; height: 100%; z-index: 3; transform: translateX(30px); }


/* ============================================================
   SPONSOR SECTION
   ============================================================ */
.sponsor-section {
  position: relative;
  width: 100%;
  background: var(--sp-bg);
  display: flex;
  align-items: stretch;
  min-height: 90vh;
  overflow: hidden;
  padding: clamp(3rem, 8vh, 7rem) clamp(1.5rem, 6vw, 6rem);
}

/* Left panel */
.sp-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  padding-right: clamp(1rem, 4vw, 4rem);
  padding-top: 0.5rem;
}

.sp-heading-block { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }

.sp-left-border {
  width: 5px;
  background: var(--dark);
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.sp-heading-inner { display: flex; flex-direction: column; line-height: 1; }

.sp-main-title {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--dark);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}

.sp-gold-title {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}

.sp-tagline {
  font-size: clamp(0.55rem, 0.85vw, 0.78rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  margin: 1rem 0 0.9rem;
}

.sp-body {
  font-size: clamp(0.7rem, 1vw, 0.88rem);
  color: #333;
  line-height: 1.7;
  margin: 0 0 1.4rem;
}

.sp-ruled-heading { display: flex; align-items: center; gap: 0.8rem; margin: 1.1rem 0 0.9rem; }

.sp-rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.sp-ruled-heading span {
  font-size: clamp(0.6rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
}
.sp-ruled-heading .sp-rule:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.sp-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; margin: 0 0 0.5rem; }

.sp-benefits li {
  font-size: clamp(0.62rem, 0.9vw, 0.82rem);
  color: #333;
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
}
.sp-benefits li::before { content: '•'; position: absolute; left: 0; color: var(--dark); }

.sp-partners-grid { display: flex; align-items: flex-start; margin: 0.3rem 0; }

.sp-partner-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-right: 1px solid #ddd;
}
.sp-partner-col:last-child { border-right: none; }

.sp-icon-circle {
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.sp-icon-circle svg { width: 60%; height: 60%; }

.sp-partner-col p {
  font-size: clamp(0.42rem, 0.6vw, 0.56rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

.sp-cta-row { margin-top: 1.2rem; }

.sp-contact-row { display: flex; align-items: center; gap: 2.5rem; margin-top: 0.6rem; }

.sp-contact-item { display: flex; align-items: center; gap: 0.6rem; }

.sp-contact-icon { width: 36px; height: 36px; flex-shrink: 0; }
.sp-contact-icon svg { width: 100%; height: 100%; }

.sp-contact-item span {
  font-size: clamp(0.65rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
}

/* Right — model images.
   Only one image in HTML (sp-model--1), centred and full-height */
.sp-models {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  min-height: 500px;
}

.sp-model {
  position: absolute;
  bottom: 0; top: 0;
  object-fit: cover;
  object-position: top center;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.sp-model--1 { left: 0; width: 100%; z-index: 3; }
.sp-model--2 { right: 0; width: 55%; height: 95%; z-index: 4; }


/* ============================================================
   DESIGNERS SECTION
   ============================================================ */
#designers {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

#designers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%,   rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 100% 100%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column grid */
.designers-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 100vh;
}

/* Left content */
.designers-content {
  padding: 80px clamp(20px, 5%, 60px) 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.calling-row {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.calling-row.visible { opacity: 1; transform: none; }

.calling-text {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--dark);
}

.mfh-logo-box { display: flex; flex-direction: column; align-items: center; }

.left-border-group { border-left: 2px solid var(--dark); padding-left: 12px; margin-bottom: 4px; }

.designers-headline {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 0.9;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s .15s ease, transform .75s .15s ease;
}
.designers-headline.visible { opacity: 1; transform: none; }

.gold-rule {
  width: 100%;
  max-width: 840px;
  height: 1.5px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 22px 0 16px;
  opacity: 0;
  transition: opacity .7s .25s ease;
}
.gold-rule.visible { opacity: 1; }

.showcase-title {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .3s ease, transform .6s .3s ease;
}
.showcase-title.visible { opacity: 1; transform: none; }

.event-sub {
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity .6s .35s ease;
}
.event-sub.visible { opacity: 1; }

/* Feature cards */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.2);
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .3s, border-color .3s;
}
.feature-item.visible { opacity: 1; transform: none; }
.feature-item:hover { box-shadow: 0 6px 24px rgba(201,168,76,.18); border-color: var(--gold); }

.feature-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { color: #fff; font-size: .85rem; }

.feature-label { font-size: .78rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }

/* Stagger feature items */
.feature-item:nth-child(1) { transition-delay: .35s; }
.feature-item:nth-child(2) { transition-delay: .42s; }
.feature-item:nth-child(3) { transition-delay: .49s; }
.feature-item:nth-child(4) { transition-delay: .56s; }
.feature-item:nth-child(5) { transition-delay: .63s; }

/* Deadline strip */
.deadline-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-top: 1.5px solid rgba(201,168,76,.35);
  width: fit-content;
  margin-bottom: 36px;
  opacity: 0;
  transition: opacity .6s .6s ease;
}
.deadline-strip.visible { opacity: 1; }

.deadline-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
}
.deadline-icon i { color: #fff; font-size: .9rem; }

.deadline-text { line-height: 1.2; }
.deadline-text .dl-label { font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase; color: #888; font-weight: 700; }
.deadline-text .dl-date  { font-size: 1.25rem; font-weight: 900; color: var(--dark); letter-spacing: 1px; }

/* CTA row */
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .7s ease, transform .6s .7s ease;
}
.cta-row.visible { opacity: 1; transform: none; }

.btn-apply {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: background .3s, color .3s, transform .25s, box-shadow .3s;
  cursor: pointer;
}
.btn-apply:hover {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139,94,42,.2);
}

.contact-pills { display: flex; flex-direction: column; gap: 8px; }

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  transition: color .3s;
}
.contact-pill:hover { color: var(--gold-dark); }

.pill-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pill-icon i { color: #fff; font-size: .8rem; }

.pill-text { font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; }

/* Right image column */
.designers-image-col {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e8e4dc 0%, #f0ece3 40%, #dbd5c8 100%);
}

.img-col-label {
  position: absolute;
  top: 50%; right: 18px;
  transform: translateY(-50%) rotate(90deg);
  font-size: .55rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(139,94,42,.35);
  font-weight: 700;
  white-space: nowrap;
  z-index: 3;
}

.img-gold-edge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
  z-index: 4;
}

.mannequin-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .9s .4s ease, transform .9s .4s ease;
}
.mannequin-wrap.visible { opacity: 1; transform: none; }

.mannequin-wrap img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: bottom center;
}

.event-badge {
  position: absolute;
  top: 36px; left: -20px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 5;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .7s .8s ease, transform .7s .8s ease;
}
.event-badge.visible { opacity: 1; transform: none; }
.event-badge .eb-label { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.event-badge .eb-date  { font-size: 1.05rem; font-weight: 900; color: var(--dark); margin-top: 2px; }


/* ============================================================
   RESPONSIVE — BREAKPOINTS (largest → smallest)
   ============================================================ */

/* ── 1200px: models grid 4→3 col ── */
@media (max-width: 1200px) {
  .models-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ── 960px: designers stack ── */
@media (max-width: 960px) {
  .designers-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .designers-image-col {
    height: 480px;
    order: -1;
  }
  .designers-content { padding: 60px 6% 70px; }
  .event-badge { left: 16px; }
}

/* ── 900px: about + sponsor stack ── */
@media (max-width: 900px) {
  /* About */
  .summit-about {
    flex-direction: column;
    padding: 3rem 1.5rem 0;
  }
  .sa-left { flex: none; max-width: 100%; padding-right: 0; }
  .sa-models { flex: none; max-width: 100%; width: 100%; min-height: 420px; margin-top: 0; }
  .sa-model--1 { width: 50%; height: 380px; }
  .sa-model--2 { left: 25%; width: 50%; height: 420px; }
  .sa-model--3 { right: 0;  width: 50%; height: 360px; }
  .sa-pillars-grid { flex-wrap: wrap; }
  .sa-pillar-col { flex: 0 0 48%; border-right: none; border-bottom: 1px solid #ddd; padding-bottom: 0.8rem; margin-bottom: 0.5rem; }

  /* Sponsor */
  .sponsor-section { flex-direction: column; padding: 3rem 1.5rem 0; }
  .sp-left { flex: none; max-width: 100%; padding-right: 0; }
  .sp-models {
    flex: none;
    max-width: 100%;
    width: 100%;
    min-height: 420px;
    margin-top: 0;
  }
  /* Single model — full width, centred */
  .sp-model--1 { left: 10%; width: 80%; height: 420px; }
  .sp-model--2 { display: none; }

  .sp-partners-grid { flex-wrap: wrap; gap: 0.5rem; }
  .sp-partner-col   { flex: 0 0 calc(33% - 0.5rem); border-right: none; border-bottom: 1px solid #ddd; }
  .sp-contact-row   { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ── 768px: nav collapses to hamburger ── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-logo-img { width: 44px; height: 44px; }

  .nav-menu {
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0; padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, box-shadow 0.3s;
    box-shadow: none;
    z-index: 999;
  }
  .nav-menu.open { max-height: 300px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
  .nav-menu li   { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .nav-menu a    { display: block; padding: 16px 24px; font-size: 1rem; }

  /* General heading sizes */
  .hero-content h1,
  .fashion-about-text h2,
  .section-header h2,
  .event-content h2 { font-size: 2.5rem; }

  /* Modal stacks */
  .modal-content { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .modal-gallery { height: auto !important; columns: 2; }
  .modal-gallery img { height: 200px; }
  .modal-gallery img:last-child:nth-child(3) { height: 180px; }
  .modal-text { padding: 30px 24px; }

  /* Models grid 4→2 */
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Designers section */
  .designers-image-col { height: 360px; }
  .calling-text        { font-size: 1.4rem; }
  .cta-row             { flex-direction: column; align-items: flex-start; }
  .contact-pills       { flex-direction: column; gap: 10px; width: 100%; }
  .contact-pill        { width: 100%; }
  .calling-row         { flex-wrap: wrap; gap: 10px; }
}

/* ── 600px: hero models + countdown side-by-side ── */
@media (max-width: 600px) {
  /* FIX 1: Keep models and countdown on ONE row.
     Model stages switch from position:absolute to position:relative
     so they occupy flex space and flank the countdown naturally.     */
  .middle-row {
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.5rem 0 0;
  }

  .model-stage {
    position: relative;   /* joins flex flow */
    bottom: auto;
    left: auto !important;
    right: auto !important;
    width: 28%;
    height: clamp(280px, 68vw, 400px);
    overflow: visible;
    flex-shrink: 0;
    z-index: 1;
  }

  .model-stage img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: clamp(300px, 75vw, 440px);
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }
  .model-stage img.active { opacity: 1; }

  /* Countdown: centred between the two model stages */
  .countdown-wrap {
    flex: 1;
    padding: 0 0.2rem 0.5rem;
    align-items: center;
    justify-content: flex-end;
  }

  .countdown-box {
    padding: 0.7rem 0.5rem;
    width: 100%;
  }

  .digit-number { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .digit-label  { font-size: 0.42rem; letter-spacing: 0.18em; }
  .digit-sep    { font-size: clamp(1.1rem, 4vw, 1.6rem); }
  .digit-group  { padding: 0 clamp(0.1rem, 1.2vw, 0.35rem); }
  .bar-divider  { display: none; }
  .bottom-bar   { gap: 1rem; }
}

/* ── 500px: about ── */
@media (max-width: 500px) {
  .sa-big-title { font-size: 2.6rem; }
  .sa-pillars-grid { flex-direction: column; }
  .sa-pillar-col { flex: none; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .model-card-content h3 { font-size: 1rem; }
  .model-card-content p  { display: none; }
  .models-section        { padding: 60px 4%; }

  .designers-headline { font-size: 2.5rem; }
  .showcase-title     { font-size: 1rem; }
  .btn-apply          { width: 100%; text-align: center; }
}
