/* ============================================================
   NU Fashion House · Custom Theme  v1.0.0
   Fonts  : Genos (headings) · Inter (body)
   Palette: #000 / #fff — no colour
   ============================================================ */

/* --- reset & box-model ------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

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

/* --- custom properties ------------------------------------ */
:root {
  --ease: cubic-bezier(.16,1,.3,1);
  --nav-h: 80px;
}

/* --- shared typography ------------------------------------ */
.nu-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 1.25rem;
  display: block;
}

.nu-section-heading {
  font-family: 'Genos', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 200;
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.nu-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.875rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  max-width: 44ch;
}
.nu-body + .nu-body { margin-top: 1em; }

/* --- placeholder image divs ------------------------------- */
.nu-img-ph {
  width: 100%;
  background: #1c1c1c;
  position: relative;
  overflow: hidden;
}
.nu-img-ph::after {
  content: 'PHOTO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  letter-spacing: .45em;
  color: #3a3a3a;
}
.nu-img-ph--portrait { aspect-ratio: unset; height: 100%; }
.nu-img-ph--tall     { aspect-ratio: 2/3; }

/* --- scroll reveal ---------------------------------------- */
.nu-anim-up {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.nu-anim-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.nu-anim-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.nu-anim-up.in-view,
.nu-anim-left.in-view,
.nu-anim-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 768px) {
  .nu-anim-left  { transform: translateY(52px); }
  .nu-anim-right { transform: translateY(52px); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nu-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  gap: 0;
  transition: background-color 0.45s ease;
}
.nu-nav.nu-nav-solid {
  background-color: rgba(0, 0, 0, 0.95);
}

.nu-nav__logo {
  font-family: 'Genos', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  line-height: 1;
}
.nu-nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nu-nav__menu {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 2vw, 2.2rem);
  align-items: center;
  margin: 0;
  padding: 0;
}
.nu-nav__menu li { list-style: none; }
.nu-nav__menu a {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .25s ease;
  white-space: nowrap;
}
.nu-nav__menu a:hover { color: #fff; }

/* WordPress adds sub-menus — hide them on desktop for now */
.nu-nav__menu .sub-menu { display: none; }

.nu-nav__social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: clamp(1rem, 2vw, 2rem);
  flex-shrink: 0;
}
.nu-nav__social a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .25s ease;
  display: flex;
  align-items: center;
}
.nu-nav__social a:hover { color: #fff; }
.nu-nav__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

/* Hamburger */
.nu-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 8px;
}
.nu-nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: all .3s ease;
}

/* Mobile nav */
@media (max-width: 960px) {
  .nu-nav__menu,
  .nu-nav__social { display: none; }
  .nu-nav__toggle { display: flex; }

  .nu-nav.nu-nav-open .nu-nav__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .97);
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .nu-nav.nu-nav-open .nu-nav__social {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 2rem);
    right: 2rem;
  }
}

/* ============================================================
   SECTION 1 · VIDEO HERO
   ============================================================ */
.nu-hero {
  position: relative;
  width: 100%;
  height: 100vh; margin-top: 0; padding-top: 0; max-height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nu-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.nu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}
.nu-hero__wordmark {
  position: relative;
  z-index: 2;
  font-family: 'Genos', sans-serif;
  font-size: clamp(7rem, 20vw, 20rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   SECTION 2 · FOUNDER
   ============================================================ */
.nu-founder {
  background: #fff;
  padding: 0;
  width: 100%;
  height: 100vh; margin-top: 0; padding-top: 0;
  overflow: hidden;
}
.nu-founder__full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: grayscale(100%);
}
@media (max-width: 768px) {
  .nu-founder { height: 56vw; }
}


/* ============================================================
   SECTION 3 · BRAND STATEMENT
   ============================================================ */
.nu-brand {
  position: relative;
  height: auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
  background-color: #0d0d0d;
}
/* Background rendered as <img> for precise sizing control */
.nu-brand__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  display: block;
}
.nu-brand__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .60);
  transition: opacity .1s linear;
  z-index: 1;
}
.nu-brand__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}
.nu-brand__content.in-view {
  opacity: 1;
  transform: translateY(0);
}
.nu-brand__headline {
  font-family: 'Genos', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 200;
  line-height: .86;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   SECTION 4 · ABOUT
   ============================================================ */
.nu-about {
  background: #fff;
  color: #000;
  padding: 80px 60px;
  position: relative;
}
.nu-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 9rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.nu-about__photo {
  overflow: hidden;
  height: 500px;
}
.nu-about__photo img,
.nu-about__photo .nu-img-ph--portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}
.nu-about__text {
  display: flex;
  flex-direction: column;
}
.nu-about__text .nu-section-heading { font-size: clamp(2rem, 3.5vw, 3.5rem); }
@media (max-width: 768px) {
  .nu-about__container { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   SECTION 5 · COLLECTION GLIMPSE
   ============================================================ */
.nu-collection {
  background: #000;
  color: #fff;
  padding: 60px 0;
  position: relative;
}
.nu-collection__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.nu-collection__header .nu-eyebrow { color: rgba(255, 255, 255, .45); }
.nu-collection__header .nu-section-heading { color: #fff; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.5rem); }

.nu-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  max-width: 1600px;
  margin: 0 auto;
}
.nu-collection__item {
  overflow: hidden;
  cursor: pointer;
}
.nu-collection__item .nu-img-ph {
  height: 500px;
  aspect-ratio: unset;
  transform: scale(1);
  transition: transform .75s var(--ease);
}
.nu-collection__item:hover .nu-img-ph { transform: scale(1.07); }

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

/* ============================================================
   SECTION 6 · KEY NUMBERS
   ============================================================ */
.nu-numbers {
  background: #fff;
  color: #000;
  padding: 120px 60px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}
.nu-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.nu-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.nu-stat__num {
  font-family: 'Genos', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
}
.nu-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .55;
}
@media (max-width: 600px) {
  .nu-numbers__grid { grid-template-columns: 1fr; gap: 3.5rem; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.nu-footer {
  background: #000;
  color: rgba(255, 255, 255, .45);
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 6vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.nu-footer__logo {
  max-height: 40px;
  width: auto;
  display: block;
}
.nu-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
