:root{
  --black:#000;
  --bone:#E8E6DE;
  --gray:#7C7C82;
  --red:#7A0C1B;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bone);
  font-family:Inter,sans-serif;
  color:#111;
}

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

.momo-dot{
  color:var(--red);
  display:inline;
  margin-left:0;
}

.header{
  display:flex;
  justify-content:space-between;
  padding:18px 30px;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.brand-text{
  font-family:Manrope,sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:.42em;
  text-transform:uppercase;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}

.nav a{
  font-size:14px;
}

.hero{
  background:black;
  color:white;
  padding:140px 10%;
  position:relative;
  text-align:center;
}

.tagline{
  margin:0;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:14px;
}

.hero-clarifier{
  margin:28px auto 0;
  font-size:16px;
  line-height:1.5;
  color:#FFFFFF;
  max-width:760px;
}

.hero-sub{
  margin:20px auto 0;
  max-width:760px;
  line-height:1.6;
  font-size:18px;
}

.hero-graphic{
  margin:56px auto 0;
  width:min(78vw,1100px);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Manrope,sans-serif;
  font-size:clamp(54px,8vw,126px);
  font-style:italic;
  font-weight:800;
  letter-spacing:-.06em;
  line-height:1;
  white-space:nowrap;
  overflow:visible;
}

.hero-graphic-momo{
  color:var(--bone);
  position:relative;
  z-index:5;
}

.hero-graphic-movement-wrap{
  position:relative;
  display:inline-block;
}

.hero-graphic-movement{
  color:rgba(232,230,222,.82);
  position:relative;
  z-index:4;
}

.hero-graphic-trail{
  position:absolute;
  top:0;
  left:0;
  color:rgba(232,230,222,.62);
  pointer-events:none;
  transform-origin:left center;
}

.hero-graphic-trail.trail-1{
  transform:translateX(24px) scaleX(1.03);
  filter:blur(4px);
  opacity:.55;
}

.hero-graphic-trail.trail-2{
  transform:translateX(52px) scaleX(1.08);
  filter:blur(10px);
  opacity:.34;
}

.hero-graphic-trail.trail-3{
  transform:translateX(88px) scaleX(1.16);
  filter:blur(18px);
  opacity:.18;
}

.accent-line{
  position:absolute;
  right:0;
  bottom:0;
  width:260px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--red));
}

.principles{
  padding-top:40px;
  
  padding:120px 20%;

  padding-bottom:0;
}

.principle{
  margin-bottom:40px;
}

.principle span{
  color:var(--red);
  font-size:12px;
  letter-spacing:.2em;
}

.principle h3{
  font-family:Manrope,sans-serif;
  margin:8px 0;
  white-space:nowrap;
  font-size:44px;
}

.principle p{
  color:#555;
  font-size:18px;
  max-width:540px;
  line-height:1.5;
}

.movement-notes{
  padding:120px 20%;
  background:#f2f1eb;
}

.page-top{
  min-height:calc(100vh - 160px);
}

.movement-inner{
  max-width:860px;
}

.movement-notes h2{
  font-family:Manrope,sans-serif;
  font-size:42px;
  margin:0;
}

.movement-sub{
  margin:12px 0 42px;
  font-size:18px;
  color:#555;
}

.movement-note{
  margin-bottom:40px;
}

.movement-note h3{
  font-family:Manrope,sans-serif;
  font-size:30px;
  margin:0 0 10px;
  line-height:1.08;
}

.movement-note p{
  margin:0;
  max-width:760px;
  color:#555;
  font-size:18px;
  line-height:1.7;
}

.manifesto{
  background:black;
  color:white;
  text-align:center;
  padding:140px 20%;
}

.manifesto p{
  font-family:Manrope,sans-serif;
  font-size:56px;
  font-weight:800;
  text-transform:uppercase;
  margin:14px 0;
}

.manifesto p:first-child{
  font-size:clamp(40px,5vw,64px);
  white-space:normal;
}

.apparel{
  padding:120px 20%;
  text-align:center;
}

.apparel h2{
  font-family:Manrope,sans-serif;
  font-size:42px;
}

.collection{
  margin-top:10px;
  font-size:18px;
}

.soon{
  margin-top:20px;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.join{
  background:var(--gray);
  color:white;
  text-align:center;
  padding:100px 20%;
}

.join h2{
  font-family:Manrope,sans-serif;
  font-size:56px;
}

.join-note{
  margin-top:12px;
  margin-bottom:26px;
  font-size:16px;
  opacity:.85;
  letter-spacing:.02em;
}

.join form{
  margin-top:10px;
  display:flex;
  justify-content:center;
  gap:6px;
}

.join input{
  padding:14px;
  width:260px;
  border:none;
}

.join button{
  padding:14px 20px;
  border:none;
  background:white;
  cursor:pointer;
}

footer{
  padding:40px;
  text-align:center;
}

.footer-tag{
  opacity:.7;
}

/* MOBILE */
@media (max-width:768px){

  .header{
    flex-direction:column;
    align-items:center;
    gap:14px;
    padding:16px 20px;
  }

  .nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 28px;
    justify-content:center;
    justify-items:center;
    text-align:center;
    width:100%;
    max-width:360px;
    margin:0 auto;
  }

  .hero{
    padding:84px 20px 72px;
  }

  .brand-text{
    letter-spacing:.28em;
  }


  .tagline{
    margin-top:16px;
    font-size:12px;
  }


  .join form{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .join input{
    width:min(100%, 320px);
  }

  .join button{
    width:140px;
    display:block;
    margin:0 auto;
  }

  .hero-sub{
    margin-top:20px;
    font-size:15px;
    line-height:1.45;
    max-width:30ch;
    text-wrap:balance;
  }

  .hero-clarifier{
    margin-top:22px;
    font-size:14px;
    line-height:1.4;
    max-width:30ch;
    text-wrap:balance;
  }

  .hero-graphic{
    width:90%;
    margin-top:56px;
    font-size:clamp(34px,11vw,72px);
  }

  .hero-graphic-trail.trail-1{
    transform:translateX(12px) scaleX(1.03);
    filter:blur(3px);
  }

  .hero-graphic-trail.trail-2{
    transform:translateX(24px) scaleX(1.08);
    filter:blur(7px);
  }

  .hero-graphic-trail.trail-3{
    transform:translateX(40px) scaleX(1.14);
    filter:blur(12px);
  }

  .principles,
  .movement-notes{
    padding:72px 20px;
  }

  .principle h3{
    white-space:normal;
    font-size:28px;
  }

  .principle p,
  .movement-sub,
  .movement-note p{
    font-size:16px;
  }

  .movement-notes h2{
    font-size:30px;
  }

  .movement-note h3{
    font-size:24px;
  }

  .manifesto{
    padding:88px 20px;
  }

  .manifesto p{
    font-size:34px;
  }

  .manifesto p:first-child{
    font-size:40px;
    white-space:normal;
  }

  .apparel{
    padding:80px 20px;
  }

  .join{
    padding:80px 20px;
  }

  .join h2{
    font-size:34px;
  }

  .join-note{
    font-size:15px;
  }

  .join form{
    flex-direction:column;
    gap:10px;
  }

  .join input{
    width:100%;
    max-width:340px;
  }

  .join button{
    width:120px;
  }

}


.editorial-photo{
  width:100%;
  margin:0 0 40px 0;
}

.editorial-photo img{
  width:100%;
  height:auto;
  display:block;
}


.cinematic-photo{
  width:100%;
  margin:0;
  overflow:hidden;
}

.cinematic-photo img{
  width:100%;
  height:auto;
  display:block;
}

@media (max-width:768px){
  .cinematic-photo{
    height:auto;
    margin:0;
    overflow:visible;
  }

  .cinematic-photo img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    object-position:center top;
  }
}


.join-meta{
  margin-top:14px;
  font-size:13px;
  opacity:.72;
  letter-spacing:.01em;
}

.thank-you-page{
  min-height:100vh;
  background:var(--black);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  text-align:center;
}

.thank-you-inner{
  max-width:560px;
}

.thank-you-kicker{
  margin:0 0 18px;
  font-size:14px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.thank-you-page h1{
  margin:0;
  font-family:Manrope,sans-serif;
  font-size:72px;
  line-height:.94;
}

.thank-you-copy{
  margin:18px 0 28px;
  font-size:20px;
  opacity:.88;
}

.thank-you-link{
  display:inline-block;
  font-size:16px;
  opacity:.88;
}

@media (max-width:768px){
  .join-meta{
    font-size:12px;
  }

  .thank-you-page h1{
    font-size:48px;
  }

  .thank-you-copy{
    font-size:18px;
  }
}


/* v51 mobile hamburger nav */
.menu-toggle{
  display:none;
  width:40px;
  height:40px;
  border:0;
  background:transparent;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:1.5px;
  background:#111;
  transition:transform .2s ease, opacity .2s ease;
}

@media (max-width: 768px){
  .header{
    position:relative;
    justify-content:center;
    padding:18px 18px;
    min-height:72px;
  }

  .brand-text{
    text-align:center;
    font-size:15px;
    letter-spacing:.40em;
  }

  .menu-toggle{
    display:inline-flex;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
  }

  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    padding:18px 24px 22px;
    background:var(--bone);
    border-bottom:1px solid rgba(0,0,0,.06);
    flex-direction:column;
    align-items:center;
    gap:18px;
    z-index:20;
  }

  .nav.nav-open{
    display:flex;
  }
}
