/* =============================================
   SMALL FOUNDATION — NIKAYLA SMALL
   Brand System Stylesheet
   ============================================= */

/* ---- FONTS ---- */
@font-face {
  font-family: 'StrelkaUltra';
  src: url('../assets/Fonts/Header_StrelkaUltra.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}
/* Barlow loaded via Google Fonts in each HTML page's <head> */

/* ---- VARIABLES ---- */
:root {
  /* Deep plum/aubergine — analogous to pink on the color wheel.
     Warmer, richer, and more editorial than pure black.
     Hot pink (#e42986) pops brilliantly against this palette. */
  --bg: #0f0916;
  --bg-2: #150d1e;
  --bg-3: #1c1229;
  --bg-card: #190f22;
  --pink: #e42986;
  --pink-light: #f7a9d2;
  --pink-mid: #ec4f9a;
  --gradient: linear-gradient(135deg, #f7a9d2 0%, #e42986 100%);
  --gradient-dark: linear-gradient(135deg, #e42986 0%, #9b1460 100%);
  --cream: #fcf5f8;
  --white: #ffffff;
  --gray-1: #9a8fa3;
  --gray-2: #5a4d63;
  --gray-3: #2e1f3d;
  --border: rgba(228, 41, 134, 0.2);
  --font-display: 'StrelkaUltra', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Arial', sans-serif;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-pink { color: var(--pink); }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink);
}
.btn-primary:hover {
  background: var(--pink-mid);
  border-color: var(--pink-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(228, 41, 134, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-arrow::after { content: ' →'; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s ease;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--cream);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__links a.active { color: var(--pink); }
.nav__cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  padding: 8px 20px;
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--pink);
  color: var(--white);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: left;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(0px, -1px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(0px, 1px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(20px);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--pink); }

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink);
}

/* ---- SECTION HEADINGS ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-1);
  max-width: 560px;
  margin-top: 16px;
}

/* ---- DIVIDER LINE ---- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}
.hero__video-placeholder {
  position: absolute;
  inset: 0;
  background: #0c0814;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero__orb { display: none; }
.hero__orb-2 { display: none; }
@keyframes orbPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.15); opacity: 0.7; }
}
.hero__field-graphic {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.04;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.3) 50%, rgba(6,6,6,0.1) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--pink-light);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__title .line-pink {
  color: var(--pink);
  display: block;
}
.hero__tagline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.08em;
  color: var(--gray-1);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-1);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gray-1), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* WHO IS NIKKI */
.who-is-nikki {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.who-is-nikki::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4/5;
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel__slide:hover img { transform: scale(1.03); }
.carousel__slide .photo-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--gray-3);
}
.carousel__slide .photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,41,134,0.05) 0%, transparent 60%);
}
.photo-placeholder__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder__icon svg {
  width: 22px;
  fill: var(--pink);
  opacity: 0.6;
}
.photo-placeholder__text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.carousel__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(6,6,6,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  cursor: pointer;
}
.carousel__btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(252,245,248,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dot.active {
  background: var(--pink);
  transform: scale(1.3);
}
.carousel__counter {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(252,245,248,0.5);
  z-index: 10;
}

/* NIKKI BIO CONTENT */
.nikki-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nikki-content .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.nikki-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-1);
}
.nikki-content p strong {
  color: var(--cream);
  font-weight: 600;
}
.stat-row {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--pink);
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* CAREER TIMELINE */
.career-timeline {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.career-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  height: 100%;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228,41,134,0.3);
  transition: all 0.4s ease;
  margin-bottom: -16px;
}
.timeline-year.active {
  color: var(--pink);
  -webkit-text-stroke: 0;
}
.timeline-milestone {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(8px);
}
.timeline-milestone.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
}
.timeline-progress {
  flex: 1;
  height: 2px;
  background: var(--gray-3);
  position: relative;
  overflow: hidden;
}
.timeline-progress__fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--pink);
  transition: width 0.5s ease;
}
.timeline-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  transition: var(--transition);
}
.timeline-btn:hover { background: var(--pink); border-color: var(--pink); }

/* MORE THAN FOOTBALL */
.more-than-football {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.more-than-football::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.mtf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mtf-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
  display: block;
}
.mtf-card__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
  transition: transform 0.6s ease;
}
.mtf-card:hover .mtf-card__bg { transform: scale(1.05); }
.mtf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.3) 50%, transparent 100%);
  z-index: 1;
}
.mtf-card__graphic {
  position: absolute;
  right: -20%; bottom: 0;
  width: 70%;
  opacity: 0.08;
  z-index: 0;
  transition: opacity 0.4s, transform 0.6s;
}
.mtf-card:hover .mtf-card__graphic {
  opacity: 0.15;
  transform: scale(1.05) rotate(5deg);
}
.mtf-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}
.mtf-card__number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 8px;
}
.mtf-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.mtf-card:hover .mtf-card__title { color: var(--pink-light); }
.mtf-card__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-1);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}
.mtf-card:hover .mtf-card__desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
}
.mtf-card__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pink);
  margin-top: 16px;
  transition: gap 0.3s;
}
.mtf-card:hover .mtf-card__arrow { gap: 16px; }
.mtf-card__gradient-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.mtf-card:hover .mtf-card__gradient-bar { transform: scaleX(1); }

/* STAY UP TO DATE */
.stay-up-to-date {
  padding: 120px 0 0;
  background: var(--bg-2);
  position: relative;
}
.stay-up-to-date::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.sutd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.social-link {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 20px; fill: var(--gray-1); transition: fill 0.2s; }
.social-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(228,41,134,0.3);
}
.social-link:hover svg { fill: var(--white); }

/* EMAIL FORM */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-form__label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.email-form__row {
  display: flex;
  height: 52px;
}
.email-form__input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--gray-3);
  border-right: none;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.email-form__input::placeholder { color: var(--gray-2); }
.email-form__input:focus { border-color: var(--pink); }
.email-form__btn {
  padding: 0 24px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--pink);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-form__btn:hover { background: var(--pink-mid); }
.email-form__note {
  font-size: 0.7rem;
  color: var(--gray-2);
}

/* AUTO-SCROLL GALLERY STRIP */
.gallery-strip {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  height: 220px;
  border-top: 1px solid var(--border);
}
.gallery-strip__track {
  display: flex;
  gap: 4px;
  animation: stripScroll 40s linear infinite;
  width: max-content;
}
.gallery-strip:hover .gallery-strip__track { animation-play-state: paused; }
.gallery-strip__item {
  width: 300px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.gallery-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-strip__item:hover img { transform: scale(1.08); }
.gallery-strip__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-3) 0%, #200d15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SMALL FOUNDATION PAGE
   ============================================ */
.page-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.page-hero__orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(228,41,134,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 10s ease-in-out infinite;
}
.page-hero__graphic {
  position: absolute;
  right: -5%; top: 50%;
  transform: translateY(-45%);
  width: 50%;
  opacity: 0.05;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.page-hero__logo {
  height: 80px;
  width: auto;
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--cream);
}
.page-hero__title span { color: var(--pink); display: block; }
.page-hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--gray-1);
  max-width: 600px;
}
.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* MISSION / VISION */
.mission-section, .vision-section {
  padding: 100px 0;
  position: relative;
}
.mission-section { background: var(--bg-2); }
.vision-section { background: var(--bg); }
.mission-section::before, .vision-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}

/* CORE VALUES */
.core-values {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.core-values::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.value-card {
  background: var(--bg-card);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: #1e1e1e; }
.value-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-3);
  margin-bottom: 20px;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}
.value-card:hover .value-card__num {
  color: var(--pink);
  -webkit-text-stroke: 0;
}
.value-card__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.value-card__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-1);
}

/* UPCOMING EVENTS TEASER */
.upcoming-events {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}
.upcoming-events::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.event-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}
.event-teaser {
  position: relative;
  padding: 48px;
  background: var(--bg-3);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.event-teaser:hover { background: #1c1c1c; }
.event-teaser::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.event-teaser:hover::after { transform: scaleX(1); }
.event-teaser__label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 800;
  margin-bottom: 16px;
}
.event-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.event-teaser__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-1);
  margin-bottom: 28px;
}
.event-teaser__graphic {
  position: absolute;
  right: -10%; bottom: -10%;
  width: 50%;
  opacity: 0.05;
  transition: opacity 0.4s;
}
.event-teaser:hover .event-teaser__graphic { opacity: 0.1; }

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-page {
  padding-top: var(--nav-h);
}
.event-section {
  padding: 100px 0;
  position: relative;
}
.event-section:nth-child(odd) { background: var(--bg); }
.event-section:nth-child(even) { background: var(--bg-2); }
.event-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.event-layout.flip { direction: rtl; }
.event-layout.flip > * { direction: ltr; }
.event-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event-content .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.event-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-1);
}
.event-content p strong { color: var(--cream); font-weight: 600; }
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(228,41,134,0.1);
  border: 1px solid rgba(228,41,134,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pink);
  width: fit-content;
}
.coming-soon-section {
  padding: 120px 0;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
}
.coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(252,245,248,0.15);
  letter-spacing: 0.05em;
}
.coming-soon__subtitle {
  font-size: 1rem;
  color: var(--gray-1);
  margin: 24px auto 0;
  max-width: 400px;
}

/* ============================================
   INQUIRIES PAGE
   ============================================ */
.inquiries-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--bg);
}
.inquiries-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  padding: 100px 0;
}
.inquiries-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.inquiries-info .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.inquiries-info p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-1);
}
.inquiry-type {
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s;
  cursor: pointer;
}
.inquiry-type:hover { border-color: var(--pink); }
.inquiry-type__title {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.inquiry-type__desc {
  font-size: 0.85rem;
  color: var(--gray-1);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info a {
  font-size: 0.85rem;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info a:hover { color: var(--pink-light); }

/* INQUIRY FORM */
.inquiry-form {
  background: var(--bg-3);
  padding: 48px;
  border: 1px solid var(--border);
}
.inquiry-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gray-1);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--gray-3);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg); }
.form-submit {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit p {
  font-size: 0.75rem;
  color: var(--gray-1);
}
.form-note {
  font-size: 0.75rem;
  color: var(--gray-2);
  margin-top: 8px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
  padding-top: var(--nav-h);
  background: var(--bg);
  min-height: 100vh;
}
.gallery-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.gallery-filters {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-bottom: 1px solid var(--border);
}
.gallery-filter {
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.gallery-filter:hover { color: var(--cream); }
.gallery-filter.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px 0 80px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-3);
}
.gallery-item:nth-child(7n+1) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(228,41,134,0.2);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { width: 32px; fill: var(--white); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: var(--pink); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__nav:hover { background: var(--pink); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ============================================
   SHARED EMAIL / GALLERY SECTION
   ============================================ */
.page-sutd {
  padding: 80px 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand__logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.footer-brand__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-1);
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-1);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.footer-nav h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gray-1);
  margin-bottom: 20px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--gray-1);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--pink); }
.footer-newsletter h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gray-1);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-2);
}
.footer-bottom a { color: var(--gray-1); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .two-col,
  .event-layout,
  .inquiries-layout,
  .sutd-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .two-col.reverse,
  .event-layout.flip {
    direction: ltr;
  }
  .mtf-grid { grid-template-columns: 1fr; }
  .mtf-card { aspect-ratio: 16/10; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .event-teaser-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(7n+1) { grid-column: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group.full { grid-column: 1; }
  .inquiry-form { padding: 28px; }
  .hero__title { font-size: clamp(3.5rem, 14vw, 7rem); }
  .container { padding: 0 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .social-links { gap: 12px; }
  .hero__title { font-size: clamp(1.6rem, 7.5vw, 2.5rem); }
  .page-hero__title { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .stat-row { gap: 20px; flex-wrap: wrap; }
  .section-title,
  .nikki-content .section-title,
  .event-content .section-title,
  .inquiries-info .section-title { font-size: clamp(1.4rem, 5.5vw, 2.2rem) !important; }
}
